proper order for the stacking order list
This commit is contained in:
parent
871602208a
commit
b0d81f77aa
1 changed files with 2 additions and 2 deletions
|
@ -381,8 +381,8 @@ unsigned int Workspace::getCount(void) const {
|
||||||
|
|
||||||
|
|
||||||
void Workspace::appendStackOrder(BlackboxWindowList &stack_order) const {
|
void Workspace::appendStackOrder(BlackboxWindowList &stack_order) const {
|
||||||
BlackboxWindowList::const_iterator it = stackingList.begin();
|
BlackboxWindowList::const_reverse_iterator it = stackingList.rbegin();
|
||||||
const BlackboxWindowList::const_iterator end = stackingList.end();
|
const BlackboxWindowList::const_reverse_iterator end = stackingList.rend();
|
||||||
for (; it != end; ++it)
|
for (; it != end; ++it)
|
||||||
stack_order.push_back(*it);
|
stack_order.push_back(*it);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue