From: Dana Jansens Date: Tue, 16 Jul 2002 22:00:44 +0000 (+0000) Subject: dont put non-normal windows in the stacking list. they dont show up in theclient... X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=de6c40934f9a8752f3d7cb713a19d2a4d1287531;p=chaz%2Fopenbox dont put non-normal windows in the stacking list. they dont show up in theclient list either. --- 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); }