outline not docking

Discussion about CodeLite development process and patches
denk_mal
CodeLite Enthusiast
Posts: 16
Joined: Mon Oct 13, 2008 6:20 pm
Contact:

outline not docking

Post by denk_mal »

Hi,

I am using codelite 9.1.0 (self-compiled from github). I am docking the outline window to the right side but on every restart it will be floating again.
Codelite won't be saving this state.

The only change I had to do for compiling is working are a change in plugin/wxFlatButton.cpp
because my wxWidget (3.0.2) is not knowing those constructor from wxBitmap.
So I changed
wxBitmap disabledBmp = wxBitmap(img, bmp.GetScaleFactor());
to
wxBitmap disabledBmp = wxBitmap(img, -1); // , bmp.GetScaleFactor());

may this be the reason for those bug?
And what version of wxWidget has this new constructor?

OS: openSuse 13.2
wxWidget: 3.0.2
gcc: 4.8.3
cmake: 3.0.2
Ccodelite: 9.1.0; selfcompiled from github (12. jan 2016)
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: outline not docking

Post by eranif »

It was reported yesterday: https://github.com/eranif/codelite/issues/1099

Eran
Make sure you have read the HOW TO POST thread
denk_mal
CodeLite Enthusiast
Posts: 16
Joined: Mon Oct 13, 2008 6:20 pm
Contact:

Re: outline not docking

Post by denk_mal »

Ok, thank a lot,
I have overseen that issue.

I want to be only getting sure that those bug did not depent on my local changes.
DavidGH
CodeLite Plugin
Posts: 819
Joined: Wed Sep 03, 2008 7:26 pm
Contact:

Re: outline not docking

Post by DavidGH »

Hi,

Commit #38d4f19 should have fixed compilation for wx3.0.2. The different ctor is used in wx3.1.

Regards,

David
Post Reply