use the old method for showing windows on workspace change
authorDana Jansens <danakj@orodu.net>
Thu, 8 Aug 2002 05:00:14 +0000 (05:00 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 8 Aug 2002 05:00:14 +0000 (05:00 +0000)
src/Workspace.cc

index 7cd21f1..7e05e4c 100644 (file)
@@ -461,8 +461,15 @@ void Workspace::hide(void) {
 
 
 void Workspace::show(void) {
-  std::for_each(stackingList.begin(), stackingList.end(),
-                std::mem_fun(&BlackboxWindow::show));
+  BlackboxWindowList::iterator it = stackingList.begin();
+  const BlackboxWindowList::iterator end = stackingList.end();
+  for (; it != end; ++it) {
+    BlackboxWindow *bw = *it;
+    // not normal windows cant focus from mouse enters anyways, so we dont
+    // need to unmap/remap them on workspace changes
+    if (! bw->isStuck() || bw->isNormal())
+      bw->show();
+  }
 
   XSync(screen->getBlackbox()->getXDisplay(), False);