appchooserbutton: filter out applications not supposed to be visible

Ensure NoDisplay=true applications don't end up in the list populated by
GtkAppChooserButton.

https://bugzilla.gnome.org/show_bug.cgi?id=696405
This commit is contained in:
Cosimo Cecchi
2013-03-22 12:44:27 -04:00
parent 93d503d5d9
commit bbd6669ce5

View File

@@ -348,6 +348,9 @@ gtk_app_chooser_button_populate (GtkAppChooserButton *self)
{
app = l->data;
if (!g_app_info_should_show (app))
continue;
if (default_app != NULL && g_app_info_equal (app, default_app))
continue;