use action_run_string for raising/lowering

This commit is contained in:
Dana Jansens 2003-09-26 18:02:08 +00:00
parent bb541d850a
commit 31b2dffbbe

View file

@ -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;