app: make the GimpSearchPopup entry icon non-activatable

... it doesn't actually do anything.
This commit is contained in:
Ell
2018-02-27 03:52:31 -05:00
parent cd8ea6b3ca
commit b8aeed4774

View File

@ -354,6 +354,8 @@ gimp_search_popup_constructed (GObject *object)
popup->priv->keyword_entry = gtk_entry_new ();
gtk_entry_set_icon_from_icon_name (GTK_ENTRY (popup->priv->keyword_entry),
GTK_ENTRY_ICON_PRIMARY, "edit-find");
gtk_entry_set_icon_activatable (GTK_ENTRY (popup->priv->keyword_entry),
GTK_ENTRY_ICON_PRIMARY, FALSE);
gtk_box_pack_start (GTK_BOX (main_vbox),
popup->priv->keyword_entry,
FALSE, FALSE, 0);