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:
b1da899
)
put !normal windows in the stacking client list as well as the normal client list
author
Dana Jansens
<danakj@orodu.net>
Sat, 24 Aug 2002 20:43:58 +0000
(20:43 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Sat, 24 Aug 2002 20:43:58 +0000
(20:43 +0000)
src/Workspace.cc
patch
|
blob
|
history
diff --git
a/src/Workspace.cc
b/src/Workspace.cc
index b943bc3ae21efbc7450657ae24bc962a0cf3ea95..b1a25b1a5401495e8326a8391c9d0f07d495422f 100644
(file)
--- a/
src/Workspace.cc
+++ b/
src/Workspace.cc
@@
-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);
}