]> Dogcows Code - chaz/openbox/blobdiff - openbox/popup.c
ignore mouse clicks on override-redirect windows that aren't owned by openbox
[chaz/openbox] / openbox / popup.c
index 071f5b62e2c5d9a40208170d40a27cb449a7450f..283348e7cbd3b2ef058c2c6262261e5a38a0a47f 100644 (file)
@@ -58,6 +58,7 @@ ObPopup *popup_new(void)
     XMapWindow(ob_display, self->text);
 
     stacking_add(INTERNAL_AS_WINDOW(self));
+    g_hash_table_insert(window_map, &self->bg, self);
     return self;
 }
 
@@ -68,6 +69,7 @@ void popup_free(ObPopup *self)
         XDestroyWindow(ob_display, self->text);
         RrAppearanceFree(self->a_bg);
         RrAppearanceFree(self->a_text);
+        g_hash_table_remove(window_map, &self->bg);
         stacking_remove(self);
         g_free(self);
     }
This page took 0.02209 seconds and 4 git commands to generate.