Make sure popup dialogs are not waiting to be shown after they are freed
authorDana Jansens <danakj@orodu.net>
Thu, 10 Dec 2009 15:36:19 +0000 (10:36 -0500)
committerDana Jansens <danakj@orodu.net>
Thu, 10 Dec 2009 15:36:19 +0000 (10:36 -0500)
openbox/popup.c

index 2a0d596..5cbe034 100644 (file)
@@ -65,6 +65,8 @@ ObPopup *popup_new(void)
 void popup_free(ObPopup *self)
 {
     if (self) {
+        popup_hide(self); /* make sure it's not showing or is being delayed and
+                             will be shown */
         XDestroyWindow(ob_display, self->bg);
         XDestroyWindow(ob_display, self->text);
         RrAppearanceFree(self->a_bg);