]> Dogcows Code - chaz/openbox/commitdiff
dont put non-normal windows in the stacking list. they dont show up in theclient...
authorDana Jansens <danakj@orodu.net>
Tue, 16 Jul 2002 22:00:44 +0000 (22:00 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 16 Jul 2002 22:00:44 +0000 (22:00 +0000)
src/Workspace.cc

index 843f81008ac91b6899c66c1be98d641b779f47fa..a231449dadda0b9c77d01ed2214d0b7c28b1f0b5 100644 (file)
@@ -408,7 +408,8 @@ void Workspace::appendStackOrder(BlackboxWindowList &stack_order) const {
   BlackboxWindowList::const_reverse_iterator it = stackingList.rbegin();
   const BlackboxWindowList::const_reverse_iterator end = stackingList.rend();
   for (; it != end; ++it)
-    stack_order.push_back(*it);
+    if (! (*it)->isNormal())
+      stack_order.push_back(*it);
 }
   
 
This page took 0.022874 seconds and 4 git commands to generate.