From a98dad0a33de362d787c546b54b94aeba16de8eb Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Tue, 3 Mar 2026 18:00:03 +0200 Subject: [PATCH] Simplify link styling in About dialog Update AboutDialog link markup to remove explicit font-size and font-weight styles and to unify link color. The author and repo links no longer set font-size, and the sponsor link color was changed from #ea4aaa to #c90000 (and its font-size/weight removed) for consistent appearance across links. --- ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py b/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py index 168c4fd..767684d 100644 --- a/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py +++ b/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py @@ -226,21 +226,21 @@ class AboutDialog(QDialog): info_layout = QHBoxLayout() info_layout.setSpacing(15) - author_link = 'oop7' + author_link = 'oop7' author_label = QLabel( f"{_('about.author', author=author_link)}" ) author_label.setOpenExternalLinks(True) info_layout.addWidget(author_label) - repo_link = 'YTSage' + repo_link = 'YTSage' repo_label = QLabel( f"{_('about.github', repo=repo_link)}" ) repo_label.setOpenExternalLinks(True) info_layout.addWidget(repo_label) - sponsor_link = '❤️ Sponsor' + sponsor_link = '❤️ Sponsor' sponsor_label = QLabel(sponsor_link) sponsor_label.setOpenExternalLinks(True) info_layout.addWidget(sponsor_label)