[gtk+] appchooserbutton: filter out applications not supposed to be visible
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] appchooserbutton: filter out applications not supposed to be visible
- Date: Fri, 22 Mar 2013 19:28:19 +0000 (UTC)
commit 5568dcb53c3a322b8399dc520fb539985814f451
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]