From f4bbf9dd45bfcb61021842e2be96d8a7a1287bb1 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Fri, 11 Nov 2022 00:33:42 +0100 Subject: src/service.c: Fix flashlight toggle fixes https://github.com/AyatanaIndicators/ayatana-indicator-power/issues/66 --- src/service.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/service.c b/src/service.c index 3aec746..9f18825 100644 --- a/src/service.c +++ b/src/service.c @@ -682,13 +682,13 @@ create_phone_settings_section(IndicatorPowerService * self) if (flashlight_supported()) { - item = g_menu_item_new(_("Flashlight"), "indicator.flashlight"); + item = g_menu_item_new(_("Flashlight"), "indicator.flashlight(true)"); g_menu_item_set_attribute(item, "x-ayatana-type", "s", "org.ayatana.indicator.switch"); g_menu_append_item(section, item); g_object_unref(item); if (flashlight_activated()) { - item = g_menu_item_new(_("Warning: Heavy use can damage the LED!"), "indicator.flashlight"); + item = g_menu_item_new(_("Warning: Heavy use can damage the LED!"), "indicator.flashlight(true)"); g_menu_append_item(section, item); g_object_unref(item); } @@ -933,7 +933,9 @@ init_gactions (IndicatorPowerService * self) g_action_map_add_action(G_ACTION_MAP(p->actions), G_ACTION(a)); /* add the flashlight action */ - a = g_simple_action_new_stateful("flashlight", NULL, g_variant_new_boolean(FALSE)); + GVariantType *pType = g_variant_type_new ("b"); + a = g_simple_action_new_stateful ("flashlight", pType, g_variant_new_boolean (FALSE)); + g_variant_type_free (pType); g_action_map_add_action (G_ACTION_MAP(p->actions), G_ACTION(a)); g_signal_connect(a, "activate", G_CALLBACK(toggle_flashlight_action), self); -- cgit v1.2.3