Creating wxNotebook with default Size [BUG]
-
- CodeLite Guru
- Posts: 352
- Joined: Sun Nov 29, 2009 7:36 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Creating wxNotebook with default Size [BUG]
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!
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Creating wxNotebook with default Size [BUG]
Its bug in your properties view...
In the notebook properties view, change the "Size" property from:
to
Eran
In the notebook properties view, change the "Size" property from:
Code: Select all
-1;-1
Code: Select all
-1,-1
Make sure you have read the HOW TO POST thread
-
- CodeLite Guru
- Posts: 352
- Joined: Sun Nov 29, 2009 7:36 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Creating wxNotebook with default Size [BUG]
that was it!
CodeLite 15.x
CodeLite is awesome, I just Love it!