From 383df27c7617914db80ac46ea6b9c2b24287d2ea Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Mon, 6 Aug 2018 16:46:09 +0300 Subject: toolbar: Fix GtkEntry::populate-popup handler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It shouldn’t return a value. --- src/nautilus-toolbar.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/nautilus-toolbar.c b/src/nautilus-toolbar.c index a7511d018..d2e4285a8 100644 --- a/src/nautilus-toolbar.c +++ b/src/nautilus-toolbar.c @@ -874,7 +874,7 @@ on_location_entry_close (GtkWidget *close_button, nautilus_toolbar_set_show_location_entry (self, FALSE); } -static gboolean +static void on_location_entry_populate_popup (GtkEntry *entry, GtkWidget *widget, gpointer user_data) @@ -884,8 +884,6 @@ on_location_entry_populate_popup (GtkEntry *entry, toolbar = user_data; toolbar->location_entry_should_auto_hide = FALSE; - - return GDK_EVENT_PROPAGATE; } static void -- cgit v1.2.1