X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fframe.cc;h=555f5c6e3142163d3fe3ad7455669888328c7b27;hb=f2fa99b33efe9262b2c3cd7bc9c913bf6bcef2ca;hp=55a0cec0db00bc5c119e580ba838195aa5639cef;hpb=e5eb783aa22440625d497a07fa079cae93bdaa86;p=chaz%2Fopenbox diff --git a/src/frame.cc b/src/frame.cc index 55a0cec0..555f5c6e 100644 --- a/src/frame.cc +++ b/src/frame.cc @@ -56,14 +56,11 @@ OBFrame::OBFrame(OBClient *client, otk::Style *style) otk::OtkWidget::unfocus(); // stuff starts out appearing focused in otk _plate.show(); // the other stuff is shown based on decor settings - - grabClient(); } OBFrame::~OBFrame() { - releaseClient(); } @@ -432,23 +429,19 @@ void OBFrame::grabClient() void OBFrame::releaseClient() { - // check if the app has already reparented its window to the root window XEvent ev; + + // check if the app has already reparented its window away if (XCheckTypedWindowEvent(otk::OBDisplay::display, _client->window(), ReparentNotify, &ev)) { - // XXX: ob2/bb didn't do this.. look up this process in other wm's! - //XPutBackEvent(otk::OBDisplay::display, &ev); - XMapWindow(otk::OBDisplay::display, _client->window()); + XPutBackEvent(otk::OBDisplay::display, &ev); } else { - // according to the ICCCM - if the client doesn't reparent to - // root, then we have to do it for them + // according to the ICCCM - if the client doesn't reparent itself, then we + // will reparent the window to root for them XReparentWindow(otk::OBDisplay::display, _client->window(), _screen->rootWindow(), _client->area().x(), _client->area().y()); } - - // do an extra map here .. ? XXX -// XMapWindow(otk::OBDisplay::display, _client->window()); }