Make some tooltips attach to the right button
This commit is contained in:
parent
e4cf41321f
commit
20ce467146
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue