Simple patch to hide the menu in fullscreen mode.
--- ComicalFrame.cpp 2006-02-26 22:28:59.000000000 +0100
+++ ComicalFrame.cpp 2006-06-05 00:49:27.000000000 +0200
@@ -425,11 +425,13 @@
bookPanelSizer->Show(toolbarSizer, toolbarActive, true);
if (theBrowser)
frameSizer->Show(theBrowser, browserActive);
+ SetMenuBar(menuBar);
ShowFullScreen(false, wxFULLSCREEN_ALL);
} else {
bookPanelSizer->Show(toolbarSizer, false, true);
if (theBrowser)
frameSizer->Show(theBrowser, false);
+ SetMenuBar(NULL);
ShowFullScreen(true, wxFULLSCREEN_ALL);
}
}
[PATCH] No Menu in Fullscreen view