remove useless comments

This commit is contained in:
shadeyg56 2023-09-09 11:20:31 -05:00
parent 204c5931b2
commit f0975edd5e
2 changed files with 0 additions and 8 deletions

View File

@ -33,10 +33,6 @@ class ToolWindow(Gtk.Window):
self.build()
def main(self):
# self.vbox_top = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
# self.vbox_top.set_valign(Gtk.Align.CENTER)
# self.vbox_top.set_halign(Gtk.Align.CENTER)
#self.add(self.vbox_top)
# Main HBOX
self.hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=HBOX_PADDING)

View File

@ -78,9 +78,6 @@ class RadioButtonView(Gtk.Box):
self.pack_start(self.powersave, True, True, 0)
self.pack_start(self.performance, True, True, 0)
#self.pack_start(self.label, False, False, 0)
#self.pack_start(self.hbox, False, False, 0)
def on_button_toggled(self, button, override):
if button.get_active():
if not self.set_by_app:
@ -220,7 +217,6 @@ class AboutDialog(Gtk.Dialog):
super().__init__(title="About", transient_for=parent)
app_version = get_version()
self.box = self.get_content_area()
# self.box.set_homogeneous(True)
self.box.set_spacing(10)
self.add_button("Close", Gtk.ResponseType.CLOSE)
self.set_default_size(400, 350)