GNOME Bugzilla – Bug 724994
Missing icons for bookmarks in file chooser
Last modified: 2014-02-23 17:12:55 UTC
When using an icon theme without symbolic icons, the file chooser sidebar displays the "missing icon" symbol for bookmarked folders. Upon further investigation, it appears that g_file_info_get_symbolic_icon() does not include non-symbolic fallbacks. For a folder, it returns the following icon names: 1. inode-directory-symbolic 2. inode-x-generic-symbolic 3. folder-symbolic This is inconsistent with other xxx_get_symbolic_icon() functions, which do include the non-symbolic fallbacks. For example, g_volume_get_symbolic_icon() returns the following icon names for a hard disk partition: 1. drive-harddisk-solidstate-symbolic 2. drive-harddisk-symbolic 3. drive-symbolic 4. drive-harddisk-solidstate 5. drive-harddisk 6. drive
Created attachment 270036 [details] [review] Add non-symbolic fallback icons in g_content_type_get_symbolic_icon() One possible solution.
Created attachment 270037 [details] [review] Add non-symbolic fallback icons in g_content_type_get_symbolic_icon() Same patch against GLib 2.38.x