Bug #622
Unwanted separator in IDE toolbar (Win32)
Status: | Approved | Start date: | 12/29/2013 | |
---|---|---|---|---|
Priority: | Low | Due date: | ||
Assignee: | Miroslav Fidler | % Done: | 0% | |
Category: | IDE | Spent time: | - | |
Target version: | - |
Description
It seems that Win32 version of IDE draws unwanted separator in toolbar. What makes this issue? "Check for updates" option in "Setup" is only available on POSIX.
So we should add additional preprocessor directive in IDE::MainTool(Bar& bar):
void Ide::MainTool(Bar& bar)
{
Edit(bar);
if(debugger) {
if(!designer)
bar.Separator();
DebugMenu(bar);
}
if(!designer)
bar.Separator();
Project(bar);
BuildMenu(bar);
if(!debugger) {
bar.Separator();
DebugMenu(bar);
#ifdef PLATFORM_POSIX
bar.Separator();
#endif
}
else {
#ifdef PLATFORM_POSIX
bar.Separator();
#endif
}
Setup(bar);
BrowseMenu(bar);
}
Related issues
History
#1 Updated by Zbigniew Rebacz over 11 years ago
- File deleted (
idebar.cpp)
#2 Updated by Zbigniew Rebacz over 11 years ago
- File idebar.cpp
added
I have found better and easier solution. Can you Mirek check uploaded source file???
#3 Updated by Miroslav Fidler over 11 years ago
- Status changed from New to Approved