diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-16 22:00:44 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-16 22:00:44 +0000 |
| commit | de6c40934f9a8752f3d7cb713a19d2a4d1287531 (patch) | |
| tree | be8c4bf1cef7484fd96b97aaf7c1dbb43e1f8dc7 /src/Workspace.cc | |
| parent | 8db840cbd0837d3a3386105c776ca6f50e962365 (diff) | |
dont put non-normal windows in the stacking list. they dont show up in theclient list either.
Diffstat (limited to 'src/Workspace.cc')
| -rw-r--r-- | src/Workspace.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc index 843f8100..a231449d 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc @@ -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); } |
