修正桌面提示消息中错误的应用程序名称

This commit is contained in:
RigoLigoRLC
2022-02-20 18:19:53 +08:00
parent 26a0c8133b
commit 7b2312f8ce
2 changed files with 3 additions and 3 deletions

View File

@@ -9,14 +9,14 @@ void SpkUiMessage::SendDesktopNotification(QString s, const char * const icon)
{
if(_notify == nullptr)
{
_notify = notify_notification_new(tr("Spark\\ Store").toLocal8Bit(),
_notify = notify_notification_new(tr("Spark Store").toLocal8Bit(),
s.toLocal8Bit(),
icon);
notify_notification_set_timeout(_notify, mTimeoutDesktop);
}
else
{
notify_notification_update(_notify, tr("Spark\\ Store").toLocal8Bit(),
notify_notification_update(_notify, tr("Spark Store").toLocal8Bit(),
s.toLocal8Bit(),
icon);
}