Creating wxNotebook with default Size [BUG]

Post here wxCrafter related issues / features / bugs
evstevemd
CodeLite Guru
Posts: 350
Joined: Sun Nov 29, 2009 7:36 pm
Genuine User: Yes
IDE Question: C++
Contact:

Creating wxNotebook with default Size [BUG]

Post by evstevemd »

When creating notebook with default size the output is wxSize(-1;-1) instead of wxSize(-1,-1)

CodeLite 15.x
CodeLite is awesome, I just Love it!

User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Creating wxNotebook with default Size [BUG]

Post by eranif »

Its bug in your properties view...

In the notebook properties view, change the "Size" property from:

Code: Select all

-1;-1 
to

Code: Select all

-1,-1
Eran
Make sure you have read the HOW TO POST thread
evstevemd
CodeLite Guru
Posts: 350
Joined: Sun Nov 29, 2009 7:36 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Creating wxNotebook with default Size [BUG]

Post by evstevemd »

that was it!

CodeLite 15.x
CodeLite is awesome, I just Love it!

Post Reply