]> Dogcows Code - chaz/openbox/blobdiff - openbox/menu.c
remove the ob_root var, its redundant of what Xlib already provides
[chaz/openbox] / openbox / menu.c
index 582b7a36d71cf7b10ee63cf9a491c96bb30b83b4..aef0356d4bc603e3b447b5ff3dcf19f32580ba20 100644 (file)
@@ -1,6 +1,7 @@
 #include "menu.h"
 #include "openbox.h"
 #include "stacking.h"
+#include "client.h"
 #include "grab.h"
 #include "screen.h"
 #include "geom.h"
@@ -211,7 +212,7 @@ Menu *menu_new_full(char *label, char *name, Menu *parent,
 
     attrib.override_redirect = TRUE;
     attrib.event_mask = FRAME_EVENTMASK;
-    self->frame = createWindow(ob_root,
+    self->frame = createWindow(RootWindow(ob_display, ob_screen),
                                CWOverrideRedirect|CWEventMask, &attrib);
     attrib.event_mask = TITLE_EVENTMASK;
     self->title = createWindow(self->frame, CWEventMask, &attrib);
This page took 0.021686 seconds and 4 git commands to generate.