Remove old design remains

This commit is contained in:
Aleksey Lim 2009-08-01 13:35:18 +00:00
parent 7d76f06ae1
commit 5c9020b188

View File

@ -74,18 +74,17 @@ class RadioPalette(Palette):
button.palette_label = label
if not children:
self.__clicked_cb(button, True)
self.__clicked_cb(button)
def update_button(self):
for i in self.button_box.get_children():
self.__clicked_cb(i, True)
self.__clicked_cb(i)
def __clicked_cb(self, button, quiet=False):
def __clicked_cb(self, button):
if not button.get_active():
return
self.set_primary_text(button.palette_label)
if not quiet:
self.popdown(immediate=True)
if self.invoker is not None: