From 6ae1a42d9011fad19a9722fd65c4401b590900ec Mon Sep 17 00:00:00 2001 From: benya Date: Sun, 19 Apr 2026 00:11:42 +0300 Subject: [PATCH] Reorder top GUI sections --- whipper/gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/whipper/gui.py b/whipper/gui.py index fe1703d..a41e46c 100644 --- a/whipper/gui.py +++ b/whipper/gui.py @@ -214,9 +214,10 @@ class WhipperGui(Gtk.Application if Gtk is not None else object): primary = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6) primary.pack_start(self._build_controls(), False, False, 0) primary.pack_start(self._build_actions(), False, False, 0) - primary.pack_start(self._build_rip_options(), False, False, 0) shell.pack_start(primary, True, True, 0) + shell.pack_start(self._build_rip_options(), False, False, 0) + secondary = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6) secondary.pack_start(self._build_disc_info_frame(), False, False, 0) shell.pack_start(secondary, False, False, 0)