From 18d92e36d1d08affd20ae905f6a9efdb139af170 Mon Sep 17 00:00:00 2001 From: Ratchanan Srirattanamet Date: Wed, 6 Dec 2023 23:52:09 +0700 Subject: Revert "Remove orphan osd-notify remnants" As discussed in [1], these hints are essential to make the indicator functions correctly on Lomiri. These hints should not make any difference on DE's that doesn't support them. [1] https://gitlab.com/ubports/development/core/content-hub/-/merge_requests/32#note_1552217874 This reverts commit ba37bd3998252a759434a8455e52f00699b50a09. --- src/notifier.c | 4 ++++ tests/test-notify.cc | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/notifier.c b/src/notifier.c index 07c5efa..cef8a3c 100644 --- a/src/notifier.c +++ b/src/notifier.c @@ -343,6 +343,10 @@ notification_show(IndicatorPowerNotifier * self) } } + notify_notification_set_hint(nn, "x-lomiri-snap-decisions", g_variant_new_string("true")); + notify_notification_set_hint(nn, "x-lomiri-non-shaped-icon", g_variant_new_string("true")); + notify_notification_set_hint(nn, "x-lomiri-private-affirmative-tint", g_variant_new_string("true")); + notify_notification_set_hint(nn, "x-lomiri-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); notify_notification_add_action(nn, "settings", _("Battery settings"), on_battery_settings_clicked, NULL, NULL); diff --git a/tests/test-notify.cc b/tests/test-notify.cc index 9fdb577..12a80fb 100644 --- a/tests/test-notify.cc +++ b/tests/test-notify.cc @@ -72,6 +72,8 @@ protected: static constexpr char const * METHOD_GET_INFO {"GetServerInformation"}; static constexpr char const * SIGNAL_CLOSED {"NotificationClosed"}; + static constexpr char const * HINT_TIMEOUT {"x-lomiri-snap-decisions-timeout"}; + protected: void SetUp() -- cgit v1.2.3