From c4e09cf4333c913abd730b7055d9852da5f19736 Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Tue, 10 Feb 2026 13:54:18 +0200 Subject: [PATCH] About dialog: adjust loading text and style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Strip the 🔄 emoji from the localized loading string to avoid rendering issues and use the cleaned text for the QLabel. Tweak the label styling by changing the color from #cccccc to #888888 and removing the italic font-style for a more consistent appearance. --- ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py | 7 ++++--- 1 file changed, 4 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 48c8b76..dc39a48 100644 --- a/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py +++ b/ytsage/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py @@ -366,14 +366,15 @@ class AboutDialog(QDialog): def _show_loading_message(self) -> None: """Show a compact loading message while system information is being gathered.""" - loading_label = QLabel(_("about.loading")) + # Strip the emoji from the localized string to avoid rendering issues + loading_text = _("about.loading").replace("🔄", "").strip() + loading_label = QLabel(loading_text) loading_label.setAlignment(Qt.AlignmentFlag.AlignCenter) loading_label.setStyleSheet( """ QLabel { - color: #cccccc; + color: #888888; font-size: 11px; - font-style: italic; padding: 10px; } """