From: Dana Jansens Date: Wed, 14 Aug 2002 06:26:42 +0000 (+0000) Subject: properly watch for windows on other workspaces when mapping. X-Git-Tag: openbox-2_0_0~47 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=74a4bc01a7b272350552f6de14a6a1cf2c344e22;p=dana%2Fopenbox.git properly watch for windows on other workspaces when mapping. --- diff --git a/src/Window.cc b/src/Window.cc index dd5f3b71..f18d4dea 100644 --- a/src/Window.cc +++ b/src/Window.cc @@ -2612,11 +2612,12 @@ void BlackboxWindow::mapRequestEvent(const XMapRequestEvent *re) { #endif // DEBUG /* - Even thought the window wants to be shown, if it is not on the current + Even though the window wants to be shown, if it is not on the current workspace, then it isn't going to be shown right now. */ - if (blackbox_attrib.workspace != screen->getCurrentWorkspaceID()) - current_state = WithdrawnState; + if (blackbox_attrib.workspace != screen->getCurrentWorkspaceID() && + blackbox_attrib.workspace < screen->getWorkspaceCount()) + if (current_state == NormalState) current_state = WithdrawnState; switch (current_state) { case IconicState: