Entry: Only open emoji picker on 2ndary icon click

We hijack the secondary icon for the emoji picker, but the handler for
::icon-press did not check the pressed icon and opened it for either.

https://bugzilla.gnome.org/show_bug.cgi?id=786938
This commit is contained in:
Daniel Boles 2017-08-28 20:26:48 +01:00
parent 69e0c7a8c3
commit 477fc95655

View File

@ -9858,7 +9858,8 @@ pick_emoji (GtkEntry *entry,
GdkEvent *event,
gpointer data)
{
gtk_entry_choose_emoji (entry);
if (icon == GTK_ENTRY_ICON_SECONDARY)
gtk_entry_choose_emoji (entry);
}
static void