diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-22 15:44:20 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-22 15:44:20 +0000 |
| commit | 7755edc39ae4ffccd0884dc210f34cc0fbe9c1bd (patch) | |
| tree | 376c94de601c916dd746ba94b0c7fec471a6f992 | |
| parent | ca8a3ac7bf7a9396e5cc4cbb4135da170057f252 (diff) | |
maybe smarter
| -rw-r--r-- | openbox/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/action.c b/openbox/action.c index 824fb35c..80c689f5 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -784,7 +784,7 @@ void action_raiselower(union ActionData *data) ObClient *cit = it->data; if (cit == c) break; - if (client_normal(cit) && cit->layer == c->layer) { + if (client_normal(cit) == client_normal(c) && cit->layer == c->layer) { if (RECT_INTERSECTS_RECT(cit->frame->area, c->frame->area)) { raise = TRUE; break; |
