diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-08-24 20:43:58 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-08-24 20:43:58 +0000 |
| commit | 82bf5b555fe292d3699a679bbed17a7fd3047a54 (patch) | |
| tree | 6fe1b6ddba3ff9f4cb0173aa9b9565130b9ef4b0 /src | |
| parent | b1da899b3264b93a40aa638bc5fb65831bdcc464 (diff) | |
put !normal windows in the stacking client list as well as the normal client list
Diffstat (limited to 'src')
| -rw-r--r-- | src/Workspace.cc | 2 |
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); } |
