[gtk+/gtk-3-8] appchooserbutton: filter out applications not supposed to be visible



commit bbd6669ce5abb815d4bcd9fa8f52b53cb24246f3
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Fri Mar 22 12:44:27 2013 -0400

    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

 gtk/gtkappchooserbutton.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkappchooserbutton.c b/gtk/gtkappchooserbutton.c
index 235464c..133ce34 100644
--- a/gtk/gtkappchooserbutton.c
+++ b/gtk/gtkappchooserbutton.c
@@ -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;
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]