X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Frootwindow.cc;h=81b19ee16495e66e1c7b5964a3a4a376ea86daae;hb=c7b22b4f9cee63d860ad4f6617cd5210299b9d8b;hp=771cc79903abfeddba5fcf3d503031f9abec2d51;hpb=8d5bd298540b98eb10072c5ee281c64f221ce9a6;p=chaz%2Fopenbox diff --git a/src/rootwindow.cc b/src/rootwindow.cc index 771cc799..81b19ee1 100644 --- a/src/rootwindow.cc +++ b/src/rootwindow.cc @@ -7,6 +7,7 @@ #include "rootwindow.hh" #include "openbox.hh" #include "screen.hh" +#include "client.hh" #include "otk/display.hh" namespace ob { @@ -102,17 +103,13 @@ void OBRootWindow::setDesktopName(int i, const std::string &name) void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e) { + otk::OtkEventHandler::mapRequestHandler(e); + #ifdef DEBUG printf("MapRequest for 0x%lx\n", e.window); #endif // DEBUG - OBClient *client = Openbox::instance->findClient(e.window); - - if (client) { - // XXX: uniconify and/or unshade the window - } else { - Openbox::instance->screen(_info->screen())->manageWindow(e.window); - } + Openbox::instance->screen(_info->screen())->manageWindow(e.window); } }