diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-popup.c | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index df3c3b1f60..3378dfb777 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2008-08-14 Sebastien Bacher <seb128@ubuntu.com> + + ** Fix for bug #547805 + + * em-popup.c: (emp_standard_menu_factory): + don't filter applications using g_app_info_should_show() + 2008-08-13 Moritz Mertinkat <moritz@mertinkat.net> * em-format-html.c: Added meaningful user agent for HTTP requests diff --git a/mail/em-popup.c b/mail/em-popup.c index 10fae903be..1961b958b3 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -825,12 +825,6 @@ emp_standard_menu_factory(EPopup *emp, void *data) GAppInfo *app = l->data; EPopupItem *item; - if (!g_app_info_should_show (app)) { - g_object_unref (app); - l->data = NULL; - continue; - } - item = g_malloc0(sizeof(*item)); item->type = E_POPUP_ITEM; item->path = g_strdup_printf("99.object.%02d", i); |