Skip to content

Commit

Permalink
fix: the icon for sending system notifications is incorrect
Browse files Browse the repository at this point in the history
Change the appName to org.deepin.dde.control-center and keep the appIcon empty

pms: Bug-297659
  • Loading branch information
xionglinlin authored and deepin-bot[bot] committed Dec 27, 2024
1 parent 8679f87 commit 3ced93b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/plugin-commoninfo/operation/commoninfowork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@ static const QString getDevelopModeLicense(const QString &filePath, const QStrin
static void notifyInfo(const QString &summary)
{
DUtil::DNotifySender(summary)
.appIcon("dde-control-center")
.appName(QObject::tr("dde-control-center"))
.appIcon("")
.appName("org.deepin.dde.control-center")
.timeOut(5000)
.call();
}

static void notifyInfoWithBody(const QString &summary, const QString &body)
{
DUtil::DNotifySender(summary)
.appIcon("dde-control-center")
.appName(QObject::tr("dde-control-center"))
.appIcon("")
.appName("org.deepin.dde.control-center")
.appBody(body)
.timeOut(5000)
.call();
Expand Down

0 comments on commit 3ced93b

Please sign in to comment.