From 650daf790dd331359a997b363bc07c08f067ae66 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 30 Sep 2025 17:17:40 -0700 Subject: [PATCH] Use a Box for the not_recording view also --- srec.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/srec.py b/srec.py index b9ab344..1885406 100644 --- a/srec.py +++ b/srec.py @@ -78,8 +78,11 @@ def on_activate(app: Gtk.Application) -> None: win.set_title('SRec') stack = Gtk.Stack() + nr_box = Gtk.Box() + nr_box.set_orientation(Gtk.Orientation.VERTICAL) start_recording = make_button("Start Recording", on_start_recording, stack) - stack.add_named(start_recording, "not_recording") + nr_box.append(start_recording) + stack.add_named(nr_box, "not_recording") r_box = Gtk.Box() r_box.set_orientation(Gtk.Orientation.VERTICAL) -- 2.50.1