diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-popup.c | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 3be6315b11..9c1b05cf28 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2009-02-23 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #572543 + + * em-popup.c: (emp_standard_menu_factory): + Always look for alternative apps for application/octet-stream. + 2009-02-11 Andre Klapper <a9016009@gmx.de> * em-folder-browser.c: diff --git a/mail/em-popup.c b/mail/em-popup.c index 2c18d60041..9603a08a75 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -799,13 +799,14 @@ emp_standard_menu_factory(EPopup *emp, void *data) apps = g_app_info_get_all_for_type (cp ? cp : mime_type); g_free (cp); - if (apps == NULL && strcmp (mime_type, "application/octet-stream") == 0) { + if (apps == NULL || strcmp (mime_type, "application/octet-stream") == 0) { if (filename != NULL) { gchar *name_type; name_type = e_util_guess_mime_type (filename, FALSE); cp = g_content_type_from_mime_type (name_type); - apps = g_app_info_get_all_for_type (cp ? cp : name_type); + /* show alternative apps first */ + apps = g_list_concat (g_app_info_get_all_for_type (cp ? cp : name_type), apps); g_free (cp); g_free (name_type); } |