dont put non-normal windows in the stacking list. they dont show up in theclient list either.
This commit is contained in:
parent
8db840cbd0
commit
de6c40934f
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue