From: Scott Worley Date: Wed, 1 Oct 2025 00:13:10 +0000 (-0700) Subject: Rename: box → r_box X-Git-Url: http://git.scottworley.com/srec/commitdiff_plain/7a0e798eb4ef7a2c82a1f23fb490ad20d95c37a2?hp=0d31da276fe483b8399b9fb13dac03ac6813c607 Rename: box → r_box --- diff --git a/srec.py b/srec.py index d57cde2..b9ab344 100644 --- a/srec.py +++ b/srec.py @@ -81,11 +81,11 @@ def on_activate(app: Gtk.Application) -> None: start_recording = make_button("Start Recording", on_start_recording, stack) stack.add_named(start_recording, "not_recording") - box = Gtk.Box() - box.set_orientation(Gtk.Orientation.VERTICAL) + r_box = Gtk.Box() + r_box.set_orientation(Gtk.Orientation.VERTICAL) stop_recording = make_button("Stop Recording", on_stop_recording, stack) - box.append(stop_recording) - stack.add_named(box, "recording") + r_box.append(stop_recording) + stack.add_named(r_box, "recording") win.set_child(stack) win.present()