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
This commit is contained in:
Sam Manzi 2019-01-12 13:37:56 +11:00 committed by Nick Hall
parent 03d0baa2bf
commit 3f28b5fcb5

View File

@ -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)