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,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;
|
||||
|
|
Loading…
Reference in a new issue