dont make our frame windows override-redirect, so that configure requests are generated if apps try to configure our frame (eg. import -frame)
This commit is contained in:
parent
57ddb2751e
commit
7ae62cc7ef
1 changed files with 1 additions and 2 deletions
|
@ -66,9 +66,8 @@ ObFrame *frame_new()
|
||||||
self->obscured = TRUE;
|
self->obscured = TRUE;
|
||||||
|
|
||||||
/* create all of the decor windows */
|
/* create all of the decor windows */
|
||||||
mask = CWOverrideRedirect | CWEventMask;
|
mask = CWEventMask;
|
||||||
attrib.event_mask = FRAME_EVENTMASK;
|
attrib.event_mask = FRAME_EVENTMASK;
|
||||||
attrib.override_redirect = TRUE;
|
|
||||||
self->window = createWindow(RootWindow(ob_display, ob_screen),
|
self->window = createWindow(RootWindow(ob_display, ob_screen),
|
||||||
mask, &attrib);
|
mask, &attrib);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue