From 2ca8dbebeaa3e34f9aff278177a3f4e81572bbff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfram=20R=C3=B6sler?= Date: Fri, 27 Dec 2019 14:51:07 +0100 Subject: [PATCH] Show dark KeePassXC icon in the system tray menu for the "Toggle Window" menu item. It matches the other (Material Design) icons much better than the colored icon. Fixes #475 --- src/gui/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/MainWindow.cpp b/src/gui/MainWindow.cpp index 461f25c1e..e4a627891 100644 --- a/src/gui/MainWindow.cpp +++ b/src/gui/MainWindow.cpp @@ -1087,7 +1087,7 @@ void MainWindow::updateTrayIcon() QAction* actionToggle = new QAction(tr("Toggle window"), menu); menu->addAction(actionToggle); - actionToggle->setIcon(filePath()->icon("apps", "keepassxc")); + actionToggle->setIcon(filePath()->icon("apps", "keepassxc-dark")); menu->addAction(m_ui->actionLockDatabases);