diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-09-17 12:08:01 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-09-17 12:08:01 -0500 |
commit | 894b2e4a09e674df21e5c0024eab8bd4626c5a9f (patch) | |
tree | 8049313f0caa7bc8026b83e96be80d54ff13abff /src | |
parent | 790f43bcea23f926f6617e0fe41026a3adaee8cc (diff) | |
download | ayatana-indicator-datetime-894b2e4a09e674df21e5c0024eab8bd4626c5a9f.tar.gz ayatana-indicator-datetime-894b2e4a09e674df21e5c0024eab8bd4626c5a9f.tar.bz2 ayatana-indicator-datetime-894b2e4a09e674df21e5c0024eab8bd4626c5a9f.zip |
work around a notifications bug that can't handle boolean hints
Diffstat (limited to 'src')
-rw-r--r-- | src/notifications.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifications.cpp b/src/notifications.cpp index 18f15d9..58a6e83 100644 --- a/src/notifications.cpp +++ b/src/notifications.cpp @@ -198,7 +198,7 @@ public: { notify_notification_set_hint (nn.get(), hint.c_str(), - g_variant_new_boolean(true)); + g_variant_new_string("true")); } for (const auto& action : info.m_actions) |