GtkApplicationWindow: Improve app menu label

When we are showing the app menu in process, use the application
name, if it has been set. Otherwise, we still fall back to
"Application".
This commit is contained in:
Matthias Clasen 2012-01-20 20:06:25 -05:00
parent c06887c9f0
commit 835e37f08f

View File

@ -258,7 +258,14 @@ gtk_application_window_update_shell_shows_app_menu (GtkApplicationWindow *window
app_menu = gtk_application_get_app_menu (gtk_window_get_application (GTK_WINDOW (window)));
if (app_menu != NULL)
g_menu_append_submenu (window->priv->app_menu_section, _("Application"), app_menu);
{
const gchar *name;
name = g_get_application_name ();
if (name == g_get_prgname ())
name = _("Application");
g_menu_append_submenu (window->priv->app_menu_section, name, app_menu);
}
}
}
}