X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkappchooserwidget.c;h=36875dfb0df3b3fa580a4d2dd79f366f1d2215a8;hb=3b2182e711ace4a2d6843848208224cd7525d530;hp=3ba1b59716421a1b0147d4d0a48858c866ee1a7a;hpb=432b7ee2bc0d2b34bd807e3ef76dab24ff2de17d;p=~andy%2Fgtk diff --git a/gtk/gtkappchooserwidget.c b/gtk/gtkappchooserwidget.c index 3ba1b5971..36875dfb0 100644 --- a/gtk/gtkappchooserwidget.c +++ b/gtk/gtkappchooserwidget.c @@ -15,9 +15,7 @@ * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public - * License along with the Gnome Library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . * * Authors: Dave Camp * Alexander Larsson @@ -208,7 +206,7 @@ widget_button_press_event_cb (GtkWidget *widget, { GtkAppChooserWidget *self = user_data; - if (event->button == 3 && event->type == GDK_BUTTON_PRESS) + if (event->button == GDK_BUTTON_SECONDARY && event->type == GDK_BUTTON_PRESS) { GAppInfo *info; GtkWidget *menu; @@ -538,6 +536,9 @@ gtk_app_chooser_widget_add_section (GtkAppChooserWidget *self, !g_app_info_supports_files (app)) continue; + if (!g_app_info_should_show (app)) + continue; + if (g_list_find_custom (exclude_apps, app, (GCompareFunc) compare_apps_func)) continue; @@ -993,11 +994,7 @@ gtk_app_chooser_widget_dispose (GObject *object) { GtkAppChooserWidget *self = GTK_APP_CHOOSER_WIDGET (object); - if (self->priv->selected_app_info != NULL) - { - g_object_unref (self->priv->selected_app_info); - self->priv->selected_app_info = NULL; - } + g_clear_object (&self->priv->selected_app_info); G_OBJECT_CLASS (gtk_app_chooser_widget_parent_class)->dispose (object); }