Make some tooltips attach to the right button

This commit is contained in:
Alexander van Gessel 2011-01-12 03:19:00 +01:00
parent e4cf41321f
commit 20ce467146

View file

@ -649,13 +649,13 @@ class TracksEditor:
help = gtk.ToolButton(gtk.STOCK_HELP)
toolbar.insert(help, -1)
quit.set_tooltip_text("Get command help for this program.")
help.set_tooltip_text("Get command help for this program.")
help.connect("clicked", self.help_handler)
help.show()
about = gtk.ToolButton(gtk.STOCK_ABOUT)
toolbar.insert(about, -1)
quit.set_tooltip_text("See credits for this program.")
about.set_tooltip_text("See credits for this program.")
about.connect("clicked", self.about_handler)
about.show()