use action_run_string for raising/lowering
This commit is contained in:
parent
bb541d850a
commit
31b2dffbbe
1 changed files with 4 additions and 4 deletions
|
@ -862,13 +862,13 @@ static void event_handle_client(ObClient *client, XEvent *e)
|
||||||
switch (e->xconfigurerequest.detail) {
|
switch (e->xconfigurerequest.detail) {
|
||||||
case Below:
|
case Below:
|
||||||
case BottomIf:
|
case BottomIf:
|
||||||
stacking_lower(CLIENT_AS_WINDOW(client));
|
action_run_string("Lower", client);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Above:
|
case Above:
|
||||||
case TopIf:
|
case TopIf:
|
||||||
default:
|
default:
|
||||||
stacking_raise(CLIENT_AS_WINDOW(client));
|
action_run_string("Raise", client);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue