Hi,
I recently updated to v3.0.5041 from v2.6.0.4189 (currently available from debian repo).
I'm running Crunchbang Linux (Based on Debian with OpenBox WM).
In the old version I could drag tabs off to the side so that it was split screen, now dragging just slides the tab along the bar. In addition, the is no 'detach' in the right click menu. (see http://i.imgur.com/sBYga.png)
Is there anything I can do to get that functionality back? I like the new version, I'd rather not have to go back to the older one.
Thanks for you time.
Clayton Rogers
Detach Tabs
-
- CodeLite Curious
- Posts: 2
- Joined: Sun Sep 11, 2011 11:38 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: Detach Tabs
One of the changes of codelite 3.0 was the removal of the wxAUI tabs from codelite (Linux only). There were many reason for this change which I will not go into the details here. However, one drawback is that you can no longer split the tabs
If you wish to have the wxAuiNotebook tab enabled in the current version
You will have to build codelite from sources
Before starting the build process:
Open the file "codelite-src/Interfaces/cl_defs.h" and change the line:
into
compile codelite as usual.
A detailed build instructions can be found here:
http://codelite.org/forum/viewtopic.php ... 1145#p4612
Eran
If you wish to have the wxAuiNotebook tab enabled in the current version
You will have to build codelite from sources
Before starting the build process:
Open the file "codelite-src/Interfaces/cl_defs.h" and change the line:
Code: Select all
# define CL_USE_NATIVEBOOK 1
Code: Select all
# define CL_USE_NATIVEBOOK 0
A detailed build instructions can be found here:
http://codelite.org/forum/viewtopic.php ... 1145#p4612
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 2
- Joined: Sun Sep 11, 2011 11:38 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Detach Tabs
Wow, thanks for the quick reply.
-
- CodeLite Curious
- Posts: 1
- Joined: Thu Jul 02, 2009 10:40 am
- Contact:
Re: Detach Tabs
Is there any plans to re-enable this feature for Linux again in the binary releases?
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Detach Tabs
You can build codelite from sources after modifying the macro: CL_USE_NATIVEBOOK (defined in cl_defs.h) and set it to 0 under __WXGTK__toran wrote:Is there any plans to re-enable this feature for Linux again in the binary releases?
Note that this is not supported
In any case, this change will not be included in any official release of codelite
Eran
Make sure you have read the HOW TO POST thread