From: Dana Jansens Date: Thu, 28 Aug 2003 17:15:35 +0000 (+0000) Subject: make the maximize item toggle maximized X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=79c9910207cd2ca41076f294053b15f1f4eec7ef;p=chaz%2Fopenbox make the maximize item toggle maximized --- diff --git a/plugins/menu/client_menu.c b/plugins/menu/client_menu.c index 3a35af32..55dbacf1 100644 --- a/plugins/menu/client_menu.c +++ b/plugins/menu/client_menu.c @@ -165,7 +165,7 @@ void plugin_startup() acts = g_slist_prepend(NULL, action_from_string("Iconify")); menu_add_normal(CLIENT_MENU_NAME, CLIENT_ICONIFY, _("Iconify"), acts); - acts = g_slist_prepend(NULL, action_from_string("MaximizeFull")); + acts = g_slist_prepend(NULL, action_from_string("ToggleMaximizeFull")); menu_add_normal(CLIENT_MENU_NAME, CLIENT_MAXIMIZE, _("Maximize"), acts); acts = g_slist_prepend(NULL, action_from_string("Raise"));