X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Frootwindow.cc;h=3fccc44a12418f5a3b3b2ef630fc4f758eee2522;hb=977ecf1f1e82f385a542648b545a0d0877febaf0;hp=a028ac81183b8ea8904e64d4a6ca3199e0973ba6;hpb=bdc491ccfe71ce29a5a1ea813da4b1c66e2fa330;p=chaz%2Fopenbox diff --git a/src/rootwindow.cc b/src/rootwindow.cc index a028ac81..3fccc44a 100644 --- a/src/rootwindow.cc +++ b/src/rootwindow.cc @@ -100,10 +100,7 @@ void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e) OBClient *client = Openbox::instance->findClient(e.window); - printf("Client: %lx\n", client); - if (client) { - printf("found client\n"); // XXX: uniconify and/or unshade the window } else { Openbox::instance->screen(_info->getScreenNumber())-> @@ -111,26 +108,4 @@ void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e) } } - -#include -void OBRootWindow::configureRequestHandler(const XConfigureRequestEvent &e) -{ - OtkEventHandler::configureRequestHandler(e); - - // when configure requests come to the root window, just pass them on - XWindowChanges xwc; - - xwc.x = e.x; - xwc.y = e.y; - xwc.width = e.width; - xwc.height = e.height; - xwc.border_width = e.border_width; - xwc.sibling = e.above; - xwc.stack_mode = e.detail; - - XConfigureWindow(otk::OBDisplay::display, e.window, - e.value_mask, &xwc); -} - - }