From c9377c3afd058de0ccd35ff9e37984833d4d880f Mon Sep 17 00:00:00 2001 From: IChooseYou Date: Fri, 13 Feb 2026 17:47:14 -0700 Subject: [PATCH] Show Icon uses 24x24 icon instead of 16x16 --- src/titlebar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/titlebar.cpp b/src/titlebar.cpp index 28ba138..0c98789 100644 --- a/src/titlebar.cpp +++ b/src/titlebar.cpp @@ -103,7 +103,7 @@ void TitleBarWidget::applyTheme(const Theme& theme) { void TitleBarWidget::setShowIcon(bool show) { if (show) { m_appLabel->setText(QString()); - m_appLabel->setPixmap(QIcon(":/icons/class.png").pixmap(16, 16)); + m_appLabel->setPixmap(QIcon(":/icons/class.png").pixmap(24, 24)); } else { m_appLabel->setPixmap(QPixmap()); m_appLabel->setText(QStringLiteral("Reclass"));