From b1d003453784b088dce76b6d8926ec6c1a93883d Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Sat, 7 Feb 2026 15:40:37 +0200 Subject: [PATCH] Increase help label font size to 11px Bump help text font-size from 10px to 11px in DownloadSettingsDialog for improved readability. Updated style for force format, audio format, and filename format help labels in ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py. --- ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py b/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py index 7798cfc..ea91901 100644 --- a/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py +++ b/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_settings.py @@ -228,7 +228,7 @@ class DownloadSettingsDialog(QDialog): # Help text help_label = QLabel(_("settings.force_format_help")) help_label.setWordWrap(True) - help_label.setStyleSheet("color: #cccccc; margin: 5px; font-size: 10px;") + help_label.setStyleSheet("color: #cccccc; margin: 5px; font-size: 11px;") output_format_layout.addWidget(help_label) output_format_group_box.setLayout(output_format_layout) @@ -274,7 +274,7 @@ class DownloadSettingsDialog(QDialog): # Help text for audio format audio_help_label = QLabel(_("settings.force_audio_format_help")) audio_help_label.setWordWrap(True) - audio_help_label.setStyleSheet("color: #cccccc; margin: 5px; font-size: 10px;") + audio_help_label.setStyleSheet("color: #cccccc; margin: 5px; font-size: 11px;") audio_format_layout.addWidget(audio_help_label) audio_format_group_box.setLayout(audio_format_layout) @@ -303,7 +303,7 @@ class DownloadSettingsDialog(QDialog): filename_help_label = QLabel(_("settings.filename_format_help")) filename_help_label.setWordWrap(True) - filename_help_label.setStyleSheet("color: #cccccc; margin: 5px; font-size: 10px;") + filename_help_label.setStyleSheet("color: #cccccc; margin: 5px; font-size: 11px;") filename_layout.addWidget(filename_help_label) filename_format_group_box.setLayout(filename_layout)