]> Dogcows Code - chaz/openbox/commitdiff
use action_run_string for raising/lowering
authorDana Jansens <danakj@orodu.net>
Fri, 26 Sep 2003 18:02:08 +0000 (18:02 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 26 Sep 2003 18:02:08 +0000 (18:02 +0000)
openbox/event.c

index c22971f15bb4046584c9252cc686c6aa913f2a38..23a834b51162f61484045b68a21753155189ab28 100644 (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;
This page took 0.023775 seconds and 4 git commands to generate.