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)