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:
bb541d8
)
use action_run_string for raising/lowering
author
Dana Jansens
<danakj@orodu.net>
Fri, 26 Sep 2003 18:02:08 +0000
(18:02 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Fri, 26 Sep 2003 18:02:08 +0000
(18:02 +0000)
openbox/event.c
patch
|
blob
|
history
diff --git
a/openbox/event.c
b/openbox/event.c
index c22971f15bb4046584c9252cc686c6aa913f2a38..23a834b51162f61484045b68a21753155189ab28 100644
(file)
--- a/
openbox/event.c
+++ b/
openbox/event.c
@@
-862,14
+862,14
@@
static void event_handle_client(ObClient *client, XEvent *e)
switch (e->xconfigurerequest.detail) {
case Below:
case BottomIf:
-
stacking_lower(CLIENT_AS_WINDOW(client)
);
-
break;
+
action_run_string("Lower", client
);
+ break;
case Above:
case TopIf:
default:
-
stacking_raise(CLIENT_AS_WINDOW(client)
);
-
break;
+
action_run_string("Raise", client
);
+ break;
}
}
break;