From de6c40934f9a8752f3d7cb713a19d2a4d1287531 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 16 Jul 2002 22:00:44 +0000 Subject: [PATCH] dont put non-normal windows in the stacking list. they dont show up in theclient list either. --- src/Workspace.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- 2.45.2