From fdb4e652f7b196eacc4f942d403910400087ce2a Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 4 Jan 2003 09:27:50 +0000 Subject: move the approproate code for map request handling to the client class. this will deiconify the window when requested. --- src/rootwindow.cc | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/rootwindow.cc') 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); } } -- cgit v1.2.3