From d351999e73363b7618fcc470540e5be7b6c16a2b Mon Sep 17 00:00:00 2001 From: delia Date: Wed, 30 Apr 2025 00:19:03 +0200 Subject: [PATCH] changed TrayMenu text from 'stop' to 'Quit' --- src/Qt/UIWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Qt/UIWindow.cpp b/src/Qt/UIWindow.cpp index 849fe4a..ee61fdb 100644 --- a/src/Qt/UIWindow.cpp +++ b/src/Qt/UIWindow.cpp @@ -163,7 +163,7 @@ void UIWindow::setupUIWindow(std::vector wallpaperPaths) { this->show(); }); - auto* closeAction = new QAction("close"); + auto* closeAction = new QAction("Quit"); connect(closeAction, &QAction::triggered, [this]() { this->qapp->quit(); }); @@ -228,7 +228,7 @@ void UIWindow::updateSelectedButton() { if (button->property("path").toString().toStdString() == selected) { button->setStyleSheet("background-color: #4488ff; color white; border: 2px solid #0055cc"); } else { - button->setStyleSheet("background-color: #4A4D51; color white; border: 2px solid #2B2A33"); + button->setStyleSheet("background-color: #4A4D51; color white; border: 2px solid #3B3A43"); } } }