]> Dogcows Code - chaz/openbox/commitdiff
watch for sticky windows when mapping, let them show.
authorDana Jansens <danakj@orodu.net>
Wed, 4 Sep 2002 02:28:42 +0000 (02:28 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 4 Sep 2002 02:28:42 +0000 (02:28 +0000)
src/Window.cc

index 701482d05c8823dfa9476b0d3f10a72ba4b4a55c..b02b535751aa6ca9faf602d35512ec6bb7e0bbf2 100644 (file)
@@ -2736,7 +2736,8 @@ void BlackboxWindow::mapRequestEvent(const XMapRequestEvent *re) {
      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() &&
+  if (! flags.stuck &&
+      blackbox_attrib.workspace != screen->getCurrentWorkspaceID() &&
       blackbox_attrib.workspace < screen->getWorkspaceCount())
     if (current_state == NormalState) current_state = WithdrawnState;
 
This page took 0.025226 seconds and 4 git commands to generate.