Filters.py: Fix broken show/hide button for Graphing Options.
This commit is contained in:
parent
cdf158cfae
commit
bf417f0569
|
@ -829,11 +829,16 @@ class Filters(threading.Thread):
|
||||||
top_hbox.pack_start(title, expand=True, padding=3)
|
top_hbox.pack_start(title, expand=True, padding=3)
|
||||||
showb = gtk.Button(label="hide", stock=None, use_underline=True)
|
showb = gtk.Button(label="hide", stock=None, use_underline=True)
|
||||||
showb.set_alignment(xalign=1.0, yalign=0.5)
|
showb.set_alignment(xalign=1.0, yalign=0.5)
|
||||||
showb.connect('clicked', self.__toggle_box, 'games')
|
showb.connect('clicked', self.__toggle_box, 'graphops')
|
||||||
top_hbox.pack_start(showb, expand=False, padding=1)
|
top_hbox.pack_start(showb, expand=False, padding=1)
|
||||||
|
|
||||||
|
vbox1 = gtk.VBox(False, 0)
|
||||||
|
vbox.pack_start(vbox1, False, False, 0)
|
||||||
|
vbox1.show()
|
||||||
|
self.boxes['graphops'] = vbox1
|
||||||
|
|
||||||
hbox1 = gtk.HBox(False, 0)
|
hbox1 = gtk.HBox(False, 0)
|
||||||
vbox.pack_start(hbox1, False, False, 0)
|
vbox1.pack_start(hbox1, False, False, 0)
|
||||||
hbox1.show()
|
hbox1.show()
|
||||||
|
|
||||||
label = gtk.Label(_("Show Graph In:"))
|
label = gtk.Label(_("Show Graph In:"))
|
||||||
|
@ -852,10 +857,6 @@ class Filters(threading.Thread):
|
||||||
button.connect("toggled", self.__set_displayin_select, "BB")
|
button.connect("toggled", self.__set_displayin_select, "BB")
|
||||||
button.show()
|
button.show()
|
||||||
|
|
||||||
vbox1 = gtk.VBox(False, 0)
|
|
||||||
vbox.pack_start(vbox1, False, False, 0)
|
|
||||||
vbox1.show()
|
|
||||||
|
|
||||||
button = gtk.CheckButton(_("Showdown Winnings"), False)
|
button = gtk.CheckButton(_("Showdown Winnings"), False)
|
||||||
vbox1.pack_start(button, True, True, 0)
|
vbox1.pack_start(button, True, True, 0)
|
||||||
# wouldn't it be awesome if there was a way to remember the state of things like
|
# wouldn't it be awesome if there was a way to remember the state of things like
|
||||||
|
|
Loading…
Reference in New Issue
Block a user