refactor(ui): drop Fusion styles , adjust sizes and improve layout in various components

This commit is contained in:
uncor3
2026-01-26 13:39:09 +03:00
parent 93be7c8b8a
commit d48e478a86
9 changed files with 58 additions and 32 deletions
-4
View File
@@ -79,15 +79,11 @@ void WelcomeWidget::setupUI()
connect(m_githubLabel, &ZLabel::clicked, this,
[]() { QDesktopServices::openUrl(QUrl(REPO_URL)); });
// Make it look like a link
QPalette githubPalette = m_githubLabel->palette();
githubPalette.setColor(QPalette::WindowText,
QColor(0, 122, 255)); // Apple blue
m_githubLabel->setPalette(githubPalette);
// Connect click functionality using installEventFilter
m_githubLabel->installEventFilter(this);
m_mainLayout->addWidget(m_githubLabel, 0, Qt::AlignCenter);
// no additional deps needed on macOS