diff options
author | Stefano Karapetsas <[email protected]> | 2013-03-24 23:27:59 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-03-24 23:27:59 +0100 |
commit | ac7ea709df0e2eac219f66ce75955265f33195a8 (patch) | |
tree | 37714b9fc046baf0768b9bdbe8e4c93442f103f5 /mate-window-picker-applet/applet.c | |
parent | 7619669f31947632b66f31d7799e79eef5af43d1 (diff) | |
download | mate-netbook-ac7ea709df0e2eac219f66ce75955265f33195a8.tar.bz2 mate-netbook-ac7ea709df0e2eac219f66ce75955265f33195a8.tar.xz |
Fix context menu in window picker applet
Diffstat (limited to 'mate-window-picker-applet/applet.c')
-rw-r--r-- | mate-window-picker-applet/applet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-window-picker-applet/applet.c b/mate-window-picker-applet/applet.c index f2aea75..ad58ad7 100644 --- a/mate-window-picker-applet/applet.c +++ b/mate-window-picker-applet/applet.c @@ -71,7 +71,7 @@ static const GtkActionEntry window_picker_menu_actions [] = { { "MenuPrefs", GTK_STOCK_PREFERENCES, N_("_Preferences"), NULL, NULL, G_CALLBACK (display_prefs_dialog) }, - { "ShowDesktopAbout", GTK_STOCK_ABOUT, N_("_About"), + { "MenuAbout", GTK_STOCK_ABOUT, N_("_About"), NULL, NULL, G_CALLBACK (display_about_dialog) } }; @@ -204,7 +204,7 @@ cw_applet_fill (MatePanelApplet *applet, window_picker_menu_actions, G_N_ELEMENTS (window_picker_menu_actions), app); - ui_path = g_build_filename (MATEWINDOWPICKER_MENU_UI_DIR, "mate-window-picker-menu.xml", NULL); + ui_path = g_build_filename (MATEWINDOWPICKER_MENU_UI_DIR, "mate-window-picker-applet-menu.xml", NULL); mate_panel_applet_setup_menu_from_file (MATE_PANEL_APPLET (app->applet), ui_path, action_group); g_free (ui_path); |