From c765e69453731a7bb6d95b153ee58fbacf54c23c Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Mon, 3 Nov 2025 19:05:37 +0200 Subject: [PATCH] Increase thumbnail size in history entry widget Adjusted the thumbnail QLabel size from 240x135 to 280x158 in HistoryEntryWidget to better utilize available space and improve visibility. --- src/gui/ytsage_gui_dialogs/ytsage_dialogs_history.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_history.py b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_history.py index 1ef5b81..f705ee6 100644 --- a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_history.py +++ b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_history.py @@ -72,9 +72,9 @@ class HistoryEntryWidget(QFrame): main_layout.setSpacing(15) main_layout.setContentsMargins(10, 10, 10, 10) - # Thumbnail - Balanced size for better visibility without taking too much space + # Thumbnail - Larger size to utilize available space self.thumbnail_label = QLabel() - self.thumbnail_label.setFixedSize(240, 135) # 16:9 ratio, balanced size + self.thumbnail_label.setFixedSize(280, 158) # 16:9 ratio, larger to fill space self.thumbnail_label.setStyleSheet(""" QLabel { border: 2px solid #3d3d3d;