don't assume screen 0
This commit is contained in:
parent
8159ac5f86
commit
2dada607c5
1 changed files with 2 additions and 2 deletions
|
@ -109,8 +109,8 @@ ObFrame *frame_new(ObClient *client)
|
||||||
XCreateColormap(ob_display,
|
XCreateColormap(ob_display,
|
||||||
RootWindow(ob_display, ob_screen),
|
RootWindow(ob_display, ob_screen),
|
||||||
visual, AllocNone);
|
visual, AllocNone);
|
||||||
attrib.background_pixel = BlackPixel(ob_display, 0);
|
attrib.background_pixel = BlackPixel(ob_display, ob_screen);
|
||||||
attrib.border_pixel = BlackPixel(ob_display, 0);
|
attrib.border_pixel = BlackPixel(ob_display, ob_screen);
|
||||||
}
|
}
|
||||||
attrib.event_mask = FRAME_EVENTMASK;
|
attrib.event_mask = FRAME_EVENTMASK;
|
||||||
self->window = createWindow(RootWindow(ob_display, ob_screen), visual,
|
self->window = createWindow(RootWindow(ob_display, ob_screen), visual,
|
||||||
|
|
Loading…
Reference in a new issue