put !normal windows in the stacking client list as well as the normal client list

This commit is contained in:
Dana Jansens 2002-08-24 20:43:58 +00:00
parent b1da899b32
commit 82bf5b555f

View file

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