GNOME Bugzilla – Bug 640005
removable media dialog should use app names
Last modified: 2011-01-22 13:59:41 UTC
Created attachment 178795 [details] screenshot The removable media panels shows names for apps that aren't the real names. It should use the name from the desktop file instead. For example, in the attached screenshot we should see "Brasero" and "Rhythmbox".
Created attachment 178796 [details] screenshot of other app dialog Same here.
Also it probably shouldn't show the comment. We don't show that in the shell app view for example.
g_desktop_app_info_get_display_name () does this: if (info->fullname == NULL) return g_desktop_app_info_get_name (appinfo); return info->fullname; Which seems wrong to me but we can just use get_name I guess.
Created attachment 178890 [details] [review] Use actual app name in app choosers Instead of using a strange composite of name and generic name.
GTK+ patch, pushing there.
commit 120e289f56aad67b1db15801d1b7ef61c8b0c2cc Author: William Jon McCann <jmccann@redhat.com> Date: Thu Jan 20 16:40:29 2011 -0500 Use actual app name in app choosers Instead of using a strange composite of name and generic name. https://bugzilla.gnome.org/show_bug.cgi?id=640005