mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-16 13:40:31 +00:00
Entry: Handle :show-emoji-icon becoming false
Disconnect the now-unwanted signal handler, and hide the icon. https://bugzilla.gnome.org/show_bug.cgi?id=786940
This commit is contained in:
parent
cb219473ee
commit
896f7c8ac0
@ -9889,6 +9889,14 @@ set_show_emoji_icon (GtkEntry *entry,
|
||||
|
||||
g_signal_connect (entry, "icon-press", G_CALLBACK (pick_emoji), NULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
g_signal_handlers_disconnect_by_func (entry, pick_emoji, NULL);
|
||||
|
||||
gtk_entry_set_icon_from_icon_name (entry,
|
||||
GTK_ENTRY_ICON_SECONDARY,
|
||||
NULL);
|
||||
}
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (entry), entry_props[PROP_SHOW_EMOJI_ICON]);
|
||||
gtk_widget_queue_resize (GTK_WIDGET (entry));
|
||||
|
Loading…
Reference in New Issue
Block a user