Reorder header

Elements in the header have been reordered so they make more sense
This commit is contained in:
Bryan Schumaker 2010-11-30 22:33:31 -05:00
parent 6a4b9f3fd9
commit 675e4c62e8
1 changed files with 4 additions and 1 deletions

View File

@ -19,15 +19,18 @@ def init():
header = gtk.VBox()
bar = gtk.HBox()
sep = gtk.HSeparator()
vsep = gtk.VSeparator()
vsep.show()
header.pack_start(bar)
header.pack_start(sep)
header.show_all()
bar_add(entry.FilterEntry(), True, True)
bar_add(button.OpenButton())
bar_add(button.GotoButton())
bar_add(button.ExportButton())
bar_add(vsep)
bar_add(button.ClearButton())
bar_add(button.GotoButton())
bar_add(button.RandomButton())
bar_add(button.VolumeButton())
init()