chore: Update tray icon

This commit is contained in:
sithlord48
2024-10-10 19:22:27 -04:00
committed by Chris Rizzitello
parent 8340f106e7
commit c66d7a6942
4 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,5 @@
<RCC>
<qresource>
<file>icons/16x16/tray.png</file>
<file>icons/64x64/video-display.png</file>
<file>icons/64x64/user-trash.png</file>
<file>icons/16x16/warning.png</file>
@ -10,6 +9,7 @@
<file>icons/64x64/padlock.png</file>
<file>icons/64x64/tray-dark.png</file>
<file>icons/64x64/tray-light.png</file>
<file>icons/128x128/tray.png</file>
<file>image/welcome.png</file>
<file>icons/64x64/folder.png</file>
<file>image/placeholder.png</file>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 926 B

View File

@ -64,7 +64,7 @@ using CoreMode = CoreProcess::Mode;
using CoreConnectionState = CoreProcess::ConnectionState;
using CoreProcessState = CoreProcess::ProcessState;
const auto kIconFile16 = ":/icons/16x16/tray.png";
const auto kIconFile = ":/icons/128x128/tray.png";
#ifdef Q_OS_MAC
const auto kLightIconFile = ":/icons/64x64/tray-light.png";
@ -620,7 +620,7 @@ void MainWindow::setIcon() {
break;
}
#else
icon.addFile(kIconFile16);
icon.addFile(kIconFile);
#endif
m_TrayIcon.setIcon(icon);