From 3f28b5fcb5a8cce1d764f550f019a712425dad70 Mon Sep 17 00:00:00 2001 From: Sam Manzi Date: Sat, 12 Jan 2019 13:37:56 +1100 Subject: [PATCH] Add tooltip for Gramplet Bar To improve discoverability of the Gramplet Bar Menu (Currently a nameless down arrow at end of each Gramplet bar title tab) add a tooltip. Issue #9042 --- gramps/gui/widgets/grampletbar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gramps/gui/widgets/grampletbar.py b/gramps/gui/widgets/grampletbar.py index b5cae4bb8..8dac3158c 100644 --- a/gramps/gui/widgets/grampletbar.py +++ b/gramps/gui/widgets/grampletbar.py @@ -115,6 +115,7 @@ class GrampletBar(Gtk.Notebook): book_button.add(box) book_button.set_relief(Gtk.ReliefStyle.NONE) book_button.connect('clicked', self.__button_clicked) + book_button.set_property("tooltip-text", _("Gramplet Bar Menu")) book_button.show() self.set_action_widget(book_button, Gtk.PackType.END)