Page 1 of 1

Creating wxNotebook with default Size [BUG]

Posted: Thu Jun 13, 2013 12:41 am
by evstevemd
When creating notebook with default size the output is wxSize(-1;-1) instead of wxSize(-1,-1)

Re: Creating wxNotebook with default Size [BUG]

Posted: Thu Jun 13, 2013 1:03 am
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

Re: Creating wxNotebook with default Size [BUG]

Posted: Thu Jun 13, 2013 1:18 am
by evstevemd
that was it!