]> Dogcows Code - chaz/openbox/blobdiff - openbox/action.c
add lower and raiselower actions
[chaz/openbox] / openbox / action.c
index f0fe691e733d55d03a2391d75feafc1a6b294fb8..a56f4cb4854819b104e30133c6ba8e2828d5847f 100644 (file)
@@ -464,16 +464,6 @@ ActionString actionstrings[] =
         action_focus_order_to_bottom,
         setup_client_action
     },
-    {
-        "raiselower",
-        action_raiselower,
-        setup_client_action
-    },
-    {
-        "lower",
-        action_lower,
-        setup_client_action
-    },
     {
         "kill",
         action_kill,
@@ -1048,15 +1038,6 @@ void action_focus_order_to_bottom(union ActionData *data)
     focus_order_to_bottom(data->client.any.c);
 }
 
-void action_raiselower(union ActionData *data)
-{
-    ObClient *c = data->client.any.c;
-
-    client_action_start(data);
-    stacking_restack_request(c, NULL, Opposite);
-    client_action_end(data, config_focus_under_mouse);
-}
-
 void action_unshaderaise(union ActionData *data)
 {
     if (data->client.any.c->shaded)
@@ -1073,13 +1054,6 @@ void action_shadelower(union ActionData *data)
         action_shade(data);
 }
 
-void action_lower(union ActionData *data)
-{
-    client_action_start(data);
-    stacking_lower(CLIENT_AS_WINDOW(data->client.any.c));
-    client_action_end(data, config_focus_under_mouse);
-}
-
 void action_kill(union ActionData *data)
 {
     client_kill(data->client.any.c);
This page took 0.02073 seconds and 4 git commands to generate.