From 4f53091262cadc7233d8f27d32d48a4374fc85d2 Mon Sep 17 00:00:00 2001 From: Dan Breslau Date: Mon, 22 Aug 2016 15:00:58 -0400 Subject: [PATCH] Search tooltip should really cover the whole search box, not just the icon --- src/moonshot-identity-management-view.vala | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/moonshot-identity-management-view.vala b/src/moonshot-identity-management-view.vala index 674987c..24d58c2 100644 --- a/src/moonshot-identity-management-view.vala +++ b/src/moonshot-identity-management-view.vala @@ -743,11 +743,15 @@ SUCH DAMAGE. this.search_entry = new Entry(); + string search_tooltip_text = _("Search for an identity or service"); + set_atk_name_description(search_entry, _("Search entry"), _("Search for a specific ID Card")); this.search_entry.set_icon_from_pixbuf(EntryIconPosition.SECONDARY, find_icon_sized("edit-find", Gtk.IconSize.MENU)); this.search_entry.set_icon_tooltip_text(EntryIconPosition.SECONDARY, - _("Search for an identity or service")); + search_tooltip_text); + + this.search_entry.set_tooltip_text(search_tooltip_text); this.search_entry.set_icon_sensitive(EntryIconPosition.SECONDARY, false); -- 2.1.4