diff options
author | Benedikt Heine <bebe@bebehei.de> | 2018-07-16 12:12:07 +0200 |
---|---|---|
committer | Benedikt Heine <bebe@bebehei.de> | 2018-07-16 12:12:07 +0200 |
commit | a7cf30005bff21beb479b994f0ff2d867de2b37f (patch) | |
tree | 84ec4b9de28e61d7e2d3f1e65dfcf72284d43cd7 /src/notifications/ManagerLinux.cpp | |
parent | Use a brighter color for button text (#355) (diff) | |
download | nheko-a7cf30005bff21beb479b994f0ff2d867de2b37f.tar.xz |
Update image_data hint to current notification spec
The current notification spec says image-data should get used instead of image_data.
Diffstat (limited to 'src/notifications/ManagerLinux.cpp')
-rw-r--r-- | src/notifications/ManagerLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifications/ManagerLinux.cpp b/src/notifications/ManagerLinux.cpp index 34bfeb8a..1a311d9c 100644 --- a/src/notifications/ManagerLinux.cpp +++ b/src/notifications/ManagerLinux.cpp @@ -53,7 +53,7 @@ NotificationsManager::showNotification(const QString summary, const QImage image) { QVariantMap hints; - hints["image_data"] = image; + hints["image-data"] = image; QList<QVariant> argumentList; argumentList << "nheko"; // app_name argumentList << (uint)0; // replace_id |