From b06dda0e74e93e107b0be4158bd82ba1e8853bc4 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 8 Sep 2014 11:43:56 -0500 Subject: in notifier.c, reverse the order in which we add the actions so they'll look right on the phone --- src/notifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/notifier.c') diff --git a/src/notifier.c b/src/notifier.c index 8242292..ed079e5 100644 --- a/src/notifier.c +++ b/src/notifier.c @@ -210,8 +210,8 @@ notification_show(IndicatorPowerNotifier * self) notify_notification_set_hint(nn, "x-canonical-non-shaped-icon", g_variant_new_boolean(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, "settings", _("Battery settings"), on_battery_settings_clicked, NULL, NULL); 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); } g_strfreev (icon_names); g_free (body); -- cgit v1.2.3