summaryrefslogtreecommitdiff
path: root/src/Workspace.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-08-24 20:43:58 +0000
committerDana Jansens <danakj@orodu.net>2002-08-24 20:43:58 +0000
commit82bf5b555fe292d3699a679bbed17a7fd3047a54 (patch)
tree6fe1b6ddba3ff9f4cb0173aa9b9565130b9ef4b0 /src/Workspace.cc
parentb1da899b3264b93a40aa638bc5fb65831bdcc464 (diff)
put !normal windows in the stacking client list as well as the normal client list
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r--src/Workspace.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc
index b943bc3a..b1a25b1a 100644
--- a/src/Workspace.cc
+++ b/src/Workspace.cc
@@ -463,7 +463,7 @@ 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)
- if ((*it)->isNormal())
+ if (! (*it)->isDesktop())
stack_order.push_back(*it);
}