reverse the if
This commit is contained in:
parent
de6c40934f
commit
4b339891e7
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ void Workspace::appendStackOrder(BlackboxWindowList &stack_order) const {
|
||||||
BlackboxWindowList::const_reverse_iterator it = stackingList.rbegin();
|
BlackboxWindowList::const_reverse_iterator it = stackingList.rbegin();
|
||||||
const BlackboxWindowList::const_reverse_iterator end = stackingList.rend();
|
const BlackboxWindowList::const_reverse_iterator end = stackingList.rend();
|
||||||
for (; it != end; ++it)
|
for (; it != end; ++it)
|
||||||
if (! (*it)->isNormal())
|
if ((*it)->isNormal())
|
||||||
stack_order.push_back(*it);
|
stack_order.push_back(*it);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue