From 324e007ce9e3dfd5e1c28fdc90483ca81236b180 Mon Sep 17 00:00:00 2001 From: Jonathan Blandford Date: Sat, 09 Apr 2005 04:06:08 +0000 Subject: Fix logic. Sat Apr 9 00:05:36 2005 Jonathan Blandford * shell/ev-page-action.c: Fix logic. --- diff --git a/ChangeLog b/ChangeLog index c91b6f6..3e9892a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Apr 9 00:05:36 2005 Jonathan Blandford + + * shell/ev-page-action.c: Fix logic. + 2005-04-08 Marco Pesenti Gritti * shell/ev-view.c: (ev_view_can_find_next): diff --git a/shell/ev-page-action.c b/shell/ev-page-action.c index 057b501..4b559c5 100644 --- a/shell/ev-page-action.c +++ b/shell/ev-page-action.c @@ -371,8 +371,9 @@ connect_proxy (GtkAction *action, GtkWidget *proxy) G_CALLBACK (update_page_cache), proxy, 0); /* We only go through this whole rigmarole if we can set - * GtkEntryCompletion::popup-set-width */ - if (gtk_check_version (2, 7, 0) != NULL) { + * GtkEntryCompletion::popup-set-width, which appeared in + * GTK+-2.7.0 */ + if (gtk_check_version (2, 7, 0) == NULL) { g_signal_connect_object (action, "notify::model", G_CALLBACK (update_model), proxy, 0); -- cgit v0.9.1