The "Enable pretty printing" and "Auto expand items under the mouse cursor" options do not save after I enable them under Settings -> GDB Settings and close CodeLite.
I must re-enable them each time I startup CodeLite.
Running: Windows 7 64-bit.
Self Compiled?: Nope, downloaded it from the CodeLite website.
Version: CodeLite 5.4
Some GDB Settings do not save after exit
-
- CodeLite Curious
- Posts: 8
- Joined: Sat Mar 01, 2014 7:46 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Some GDB Settings do not save after exit
This bug was introduced in codelite 5.4 and already got fixed in git head a month ago (or more).
To workaround this:
- codelite codelite
- open the file CODELITE_INSTALL_DIR/config/debuggers.xml.default
Search for the strings:
and change it to:
Start codelite
Eran
To workaround this:
- codelite codelite
- open the file CODELITE_INSTALL_DIR/config/debuggers.xml.default
Search for the strings:
Code: Select all
<Debuggers Version="5.11">
Code: Select all
<Debuggers Version="5.4">
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 8
- Joined: Sat Mar 01, 2014 7:46 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Some GDB Settings do not save after exit
Thank you, this fixed the problem.