dont put non-normal windows in the stacking list. they dont show up in theclient list either.

This commit is contained in:
Dana Jansens 2002-07-16 22:00:44 +00:00
parent 8db840cbd0
commit de6c40934f

View file

@ -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);
}