chore: use flameshot icon as tray notification icon

* this need Qt >= 5.9, see https://doc.qt.io/qt-5.9/qsystemtrayicon.html#showMessage-1
This commit is contained in:
Ahmed Zetao Yang
2020-09-30 22:47:12 +08:00
committed by borgmanJeremy
parent 5292b894f2
commit 4ab28d960c

View File

@@ -253,7 +253,7 @@ void Controller::sendTrayNotification(const QString& text,
{
if (m_trayIcon) {
m_trayIcon->showMessage(
title, text, QSystemTrayIcon::Information, timeout);
title, text, QIcon(":img/app/flameshot.svg"), timeout);
}
}