rename fullscreen back to togglefullscreen

This commit is contained in:
Dana Jansens 2007-07-13 11:24:38 -04:00
parent 07df190949
commit 6c538915c8

View file

@ -1,24 +1,21 @@
#include "openbox/actions.h" #include "openbox/actions.h"
#include "openbox/client.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() void action_fullscreen_startup()
{ {
actions_register("Fullscreen", actions_register("ToggleFullscreen", NULL, NULL, run_func_toggle,
NULL, NULL,
run_func,
NULL, NULL); NULL, NULL);
} }
/* Always return FALSE because its not interactive */ /* 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) { if (data->client) {
actions_client_move(data, TRUE); actions_client_move(data, TRUE);
client_fullscreen(data->client, !data->client->fullscreen); client_fullscreen(data->client, !data->client->fullscreen);
actions_client_move(data, FALSE); actions_client_move(data, FALSE);
} }
return FALSE; return FALSE;
} }