From b70dfb58e7abd8314950f6122cb3e3e1dd3c5431 Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Tue, 9 Dec 2025 20:36:07 +0200 Subject: [PATCH] Adjust QLineEdit padding in main GUI Reduced the vertical padding of QLineEdit elements from 12px to 5px to improve the appearance and spacing in the main application window. --- src/gui/ytsage_gui_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/ytsage_gui_main.py b/src/gui/ytsage_gui_main.py index 2eedf84..46e7348 100644 --- a/src/gui/ytsage_gui_main.py +++ b/src/gui/ytsage_gui_main.py @@ -140,7 +140,7 @@ class YTSageApp(QMainWindow, FormatTableMixin, VideoInfoMixin): # Inherit from color: #ffffff; } QLineEdit { - padding: 12px 15px; + padding: 5px 15px; border: 2px solid #2a2d2e; border-radius: 6px; background-color: #1b2021;