rename fullscreen back to togglefullscreen
authorDana Jansens <danakj@orodu.net>
Fri, 13 Jul 2007 15:24:38 +0000 (11:24 -0400)
committerDana Jansens <danakj@orodu.net>
Fri, 13 Jul 2007 15:24:38 +0000 (11:24 -0400)
openbox/actions/fullscreen.c

index c791191..647a78b 100644 (file)
@@ -1,24 +1,21 @@
 #include "openbox/actions.h"
 #include "openbox/client.h"
 
-static gboolean run_func(ObActionsData *data, gpointer options);
+static gboolean run_func_toggle(ObActionsData *data, gpointer options);
 
 void action_fullscreen_startup()
 {
-    actions_register("Fullscreen",
-                     NULL, NULL,
-                     run_func,
+    actions_register("ToggleFullscreen", NULL, NULL, run_func_toggle,
                      NULL, NULL);
 }
 
 /* Always return FALSE because its not interactive */
-static gboolean run_func(ObActionsData *data, gpointer options)
+static gboolean run_func_toggle(ObActionsData *data, gpointer options)
 {
     if (data->client) {
         actions_client_move(data, TRUE);
         client_fullscreen(data->client, !data->client->fullscreen);
         actions_client_move(data, FALSE);
     }
-
     return FALSE;
 }