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) { 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;
} }
} }
break; break;