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:
Dana Jansens 2003-12-22 18:16:47 +00:00
parent 57ddb2751e
commit 7ae62cc7ef

View file

@ -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);