From ba5a47f8af5b1d11c9bc838355333a441c4eba0d Mon Sep 17 00:00:00 2001 From: pax Date: Tue, 7 Apr 2026 23:31:20 -0500 Subject: [PATCH] =?UTF-8?q?Score=20and=20page=20spinboxes=2050px=20?= =?UTF-8?q?=E2=86=92=2040px=20to=20recover=20top-bar=20horizontal=20space?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- booru_viewer/gui/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/booru_viewer/gui/app.py b/booru_viewer/gui/app.py index d034d84..971049c 100644 --- a/booru_viewer/gui/app.py +++ b/booru_viewer/gui/app.py @@ -423,7 +423,7 @@ class BooruApp(QMainWindow): self._score_spin = QSpinBox() self._score_spin.setRange(0, 99999) self._score_spin.setValue(0) - self._score_spin.setFixedWidth(50) + self._score_spin.setFixedWidth(40) self._score_spin.setFixedHeight(23) self._score_spin.setButtonSymbols(QSpinBox.ButtonSymbols.NoButtons) top.addWidget(self._score_spin) @@ -439,7 +439,7 @@ class BooruApp(QMainWindow): self._page_spin = QSpinBox() self._page_spin.setRange(1, 99999) self._page_spin.setValue(1) - self._page_spin.setFixedWidth(50) + self._page_spin.setFixedWidth(40) self._page_spin.setFixedHeight(23) # match the surrounding 23px row self._page_spin.setButtonSymbols(QSpinBox.ButtonSymbols.NoButtons) top.addWidget(self._page_spin)