projects
/
mikachu
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7755edc
)
only use visible windows when calcing for raiselower
author
Dana Jansens
<danakj@orodu.net>
Fri, 22 Aug 2003 15:57:20 +0000
(15:57 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Fri, 22 Aug 2003 15:57:20 +0000
(15:57 +0000)
openbox/action.c
patch
|
blob
|
history
diff --git
a/openbox/action.c
b/openbox/action.c
index 80c689f5c9effbaadb2bb707fc0c18dfbec5f72a..b035558dcfbcd770943682531920c19bb13c8c29 100644
(file)
--- a/
openbox/action.c
+++ b/
openbox/action.c
@@
-784,7
+784,10
@@
void action_raiselower(union ActionData *data)
ObClient *cit = it->data;
if (cit == c) break;
- if (client_normal(cit) == client_normal(c) && cit->layer == c->layer) {
+ if (client_normal(cit) == client_normal(c) &&
+ cit->layer == c->layer &&
+ cit->frame->visible)
+ {
if (RECT_INTERSECTS_RECT(cit->frame->area, c->frame->area)) {
raise = TRUE;
break;