- start_recording = make_button("Start Recording", on_start_recording, stack)
- stack.add_named(start_recording, "not_recording")
+ nr_box = Gtk.Box()
+ nr_box.set_orientation(Gtk.Orientation.VERTICAL)
+ nr_box.append(make_button("Start Recording", on_start_recording, stack))
+ stack.add_named(nr_box, "not_recording")