summaryrefslogtreecommitdiff
path: root/openbox/action.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-22 14:28:21 +0000
committerDana Jansens <danakj@orodu.net>2007-06-22 14:28:21 +0000
commita5c2aadf2778d6ab4105abd457cd2ab21a1172ec (patch)
tree53b7e1731fef9a96d5a3b77e28414f2538f25f38 /openbox/action.c
parenta07465f376b0a33270532501127ec812efe2c2b2 (diff)
add lower and raiselower actions
Diffstat (limited to 'openbox/action.c')
-rw-r--r--openbox/action.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/openbox/action.c b/openbox/action.c
index f0fe691e..a56f4cb4 100644
--- a/openbox/action.c
+++ b/openbox/action.c
@@ -465,16 +465,6 @@ ActionString actionstrings[] =
setup_client_action
},
{
- "raiselower",
- action_raiselower,
- setup_client_action
- },
- {
- "lower",
- action_lower,
- setup_client_action
- },
- {
"kill",
action_kill,
setup_client_action
@@ -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);