diff options
-rw-r--r-- | mate-panel/panel-menu-bar.c | 4 | ||||
-rw-r--r-- | mate-panel/panel-menu-button.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mate-panel/panel-menu-bar.c b/mate-panel/panel-menu-bar.c index 0ea27331..05e26850 100644 --- a/mate-panel/panel-menu-bar.c +++ b/mate-panel/panel-menu-bar.c @@ -288,7 +288,7 @@ static void panel_menu_bar_load(PanelWidget* panel, gboolean locked, int positio mate_panel_applet_add_callback(menubar->priv->info, "help", GTK_STOCK_HELP, _("_Help"), NULL); /* Menu editors */ - if (panel_is_program_in_path("alacarte") || panel_is_program_in_path("matemenu-simple-editor")) + if (panel_is_program_in_path("mozo") || panel_is_program_in_path("matemenu-simple-editor")) { mate_panel_applet_add_callback (menubar->priv->info, "edit", NULL, _("_Edit Menus"), NULL); } @@ -334,7 +334,7 @@ void panel_menu_bar_invoke_menu(PanelMenuBar* menubar, const char* callback_name { GError* error = NULL; - panel_launch_desktop_file_with_fallback("alacarte.desktop", "alacarte", screen, &error); + panel_launch_desktop_file_with_fallback("mozo.desktop", "mozo", screen, &error); if (error) { diff --git a/mate-panel/panel-menu-button.c b/mate-panel/panel-menu-button.c index f173d0b5..e37c736d 100644 --- a/mate-panel/panel-menu-button.c +++ b/mate-panel/panel-menu-button.c @@ -664,7 +664,7 @@ panel_menu_button_load (const char *menu_path, mate_panel_applet_add_callback (info, "help", GTK_STOCK_HELP, _("_Help"), NULL); - if (panel_is_program_in_path ("alacarte") || + if (panel_is_program_in_path ("mozo") || panel_is_program_in_path ("matemenu-simple-editor")) mate_panel_applet_add_callback (info, "edit", NULL, _("_Edit Menus"), NULL); @@ -978,8 +978,8 @@ panel_menu_button_invoke_menu (PanelMenuButton *button, } else if (!strcmp (callback_name, "edit")) { GError *error = NULL; - panel_launch_desktop_file_with_fallback ("alacarte.desktop", - "alacarte", + panel_launch_desktop_file_with_fallback ("mozo.desktop", + "mozo", screen, &error); if (error) { g_error_free (error); |