update status label
This commit is contained in:
parent
9333672655
commit
f56791b2dd
@ -48,7 +48,9 @@ class Window:
|
|||||||
self.updateProjects()
|
self.updateProjects()
|
||||||
|
|
||||||
# Bottom Control Bar
|
# Bottom Control Bar
|
||||||
self.mark_label = gtk.Label()
|
self.status_label = gtk.Label('No mark set')
|
||||||
|
self.status_label.set_alignment(0.0, 0.5)
|
||||||
|
self.status_label.set_padding(5, 0)
|
||||||
adjust_button = gtk.Button('Adjust')
|
adjust_button = gtk.Button('Adjust')
|
||||||
in_button = gtk.Button('In')
|
in_button = gtk.Button('In')
|
||||||
out_button = gtk.Button('Out')
|
out_button = gtk.Button('Out')
|
||||||
@ -56,7 +58,7 @@ class Window:
|
|||||||
exit_button.connect("clicked", self.destroy_event)
|
exit_button.connect("clicked", self.destroy_event)
|
||||||
|
|
||||||
hbox = gtk.HBox()
|
hbox = gtk.HBox()
|
||||||
hbox.pack_start(self.mark_label, expand = True, fill = False)
|
hbox.pack_start(self.status_label, expand = True)
|
||||||
hbox.pack_start(adjust_button, expand = False)
|
hbox.pack_start(adjust_button, expand = False)
|
||||||
hbox.pack_start(in_button, expand = False)
|
hbox.pack_start(in_button, expand = False)
|
||||||
hbox.pack_start(out_button, expand = False)
|
hbox.pack_start(out_button, expand = False)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user