Show Icon uses 24x24 icon instead of 16x16

This commit is contained in:
IChooseYou
2026-02-13 17:47:14 -07:00
committed by sysadmin
parent a86912add1
commit c9377c3afd

View File

@@ -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"));