diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-10-07 10:26:05 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-10-07 10:26:05 -0500 |
commit | f82d29b6aea2437b5d366d167710bf7897ca24f8 (patch) | |
tree | 6b860475af9dc678cc390882eb9a3168bced5521 | |
parent | c73b4b9321251c270613ddfc8d2ba2276ca115c0 (diff) | |
download | ayatana-indicator-power-f82d29b6aea2437b5d366d167710bf7897ca24f8.tar.gz ayatana-indicator-power-f82d29b6aea2437b5d366d167710bf7897ca24f8.tar.bz2 ayatana-indicator-power-f82d29b6aea2437b5d366d167710bf7897ca24f8.zip |
use a string for unity-notification's boolean types.
-rw-r--r-- | src/notifier.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/notifier.c b/src/notifier.c index 1767146..1881649 100644 --- a/src/notifier.c +++ b/src/notifier.c @@ -216,8 +216,8 @@ notification_show(IndicatorPowerNotifier * self) if (actions_supported) { - notify_notification_set_hint(nn, "x-canonical-snap-decisions", g_variant_new_boolean(TRUE)); - notify_notification_set_hint(nn, "x-canonical-non-shaped-icon", g_variant_new_boolean(TRUE)); + notify_notification_set_hint(nn, "x-canonical-snap-decisions", g_variant_new_string("true")); + notify_notification_set_hint(nn, "x-canonical-non-shaped-icon", g_variant_new_string("true")); notify_notification_set_hint(nn, "x-canonical-snap-decisions-timeout", g_variant_new_int32(INT32_MAX)); notify_notification_set_timeout(nn, NOTIFY_EXPIRES_NEVER); notify_notification_add_action(nn, "dismiss", _("OK"), on_dismiss_clicked, NULL, NULL); |