(svn r8533) -Fix: segmentation fault when the toolbar gets removed and you have selected one of the items in a submenu of the toolbar.
authorrubidium
Fri, 02 Feb 2007 14:32:23 +0000
changeset 5907 31c78a89f10c
parent 5906 d743f61aba80
child 5908 5ff4fe308285
(svn r8533) -Fix: segmentation fault when the toolbar gets removed and you have selected one of the items in a submenu of the toolbar.
src/window.cpp
--- a/src/window.cpp	Fri Feb 02 08:23:48 2007 +0000
+++ b/src/window.cpp	Fri Feb 02 14:32:23 2007 +0000
@@ -1915,6 +1915,7 @@
 /* Delete all always on-top windows to get an empty screen */
 void HideVitalWindows(void)
 {
+	DeleteWindowById(WC_TOOLBAR_MENU, 0);
 	DeleteWindowById(WC_MAIN_TOOLBAR, 0);
 	DeleteWindowById(WC_STATUS_BAR, 0);
 }