projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de6c409
)
reverse the if
author
Dana Jansens
<danakj@orodu.net>
Tue, 16 Jul 2002 22:01:17 +0000
(22:01 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Tue, 16 Jul 2002 22:01:17 +0000
(22:01 +0000)
src/Workspace.cc
patch
|
blob
|
history
diff --git
a/src/Workspace.cc
b/src/Workspace.cc
index a231449dadda0b9c77d01ed2214d0b7c28b1f0b5..9bbc617f70b60b3a35da45a2b9ff1373c83a7986 100644
(file)
--- a/
src/Workspace.cc
+++ b/
src/Workspace.cc
@@
-408,7
+408,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)->isNormal())
stack_order.push_back(*it);
}