summaryrefslogtreecommitdiff
path: root/openbox/action.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-22 14:39:01 +0000
committerDana Jansens <danakj@orodu.net>2007-06-22 14:39:01 +0000
commit1eb727064a4ad19c89b55d08d68e8d4b85c0b1d7 (patch)
tree3fbad1c117e78ecaeb18945b409e82ac94180e42 /openbox/action.c
parentcf478381b3e386dc0478403cf1a73b4d3ec6fa61 (diff)
add the fullscreen action
Diffstat (limited to 'openbox/action.c')
-rw-r--r--openbox/action.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/openbox/action.c b/openbox/action.c
index 5393bb8a..50df9f28 100644
--- a/openbox/action.c
+++ b/openbox/action.c
@@ -570,11 +570,6 @@ ActionString actionstrings[] =
setup_client_action
},
{
- "togglefullscreen",
- action_toggle_fullscreen,
- setup_client_action
- },
- {
"sendtodesktop",
action_send_to_desktop,
setup_action_send_to_desktop
@@ -1215,13 +1210,6 @@ void action_toggle_maximize_vert(union ActionData *data)
client_action_end(data, config_focus_under_mouse);
}
-void action_toggle_fullscreen(union ActionData *data)
-{
- client_action_start(data);
- client_fullscreen(data->client.any.c, !(data->client.any.c->fullscreen));
- client_action_end(data, config_focus_under_mouse);
-}
-
void action_send_to_desktop(union ActionData *data)
{
ObClient *c = data->sendto.any.c;