From 853f224f3562708068727f6dfc2a514090e9c815 Mon Sep 17 00:00:00 2001 From: Ratchanan Srirattanamet Date: Thu, 15 Dec 2022 14:30:20 +0700 Subject: src/rotation-lock.cpp: make MenuItem QMenuModel-compatible In a similar way as [1], make the rotation lock MenuItem QMenuModel- compatible by specifying a target in it. [1] https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/40 --- src/rotation-lock.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/rotation-lock.cpp b/src/rotation-lock.cpp index 1f0353f..ac57e2b 100644 --- a/src/rotation-lock.cpp +++ b/src/rotation-lock.cpp @@ -232,7 +232,7 @@ private: menu = g_menu_new(); section = g_menu_new(); - menu_item = g_menu_item_new(_("Rotation Lock"), "indicator.rotation-lock"); + menu_item = g_menu_item_new(_("Rotation Lock"), "indicator.rotation-lock(true)"); g_menu_item_set_attribute(menu_item, "x-ayatana-type", "s", "org.ayatana.indicator.switch"); g_menu_append_item(section, menu_item); g_menu_append_section(menu, NULL, G_MENU_MODEL(section)); @@ -296,7 +296,7 @@ private: if (ayatana_common_utils_is_lomiri()) { section = g_menu_new(); - menu_item = g_menu_item_new(_("Rotation Lock"), "indicator.rotation-lock"); + menu_item = g_menu_item_new(_("Rotation Lock"), "indicator.rotation-lock(true)"); g_menu_item_set_attribute(menu_item, "x-ayatana-type", "s", "org.ayatana.indicator.switch"); g_menu_append_item(section, menu_item); g_menu_append_section(menu, NULL, G_MENU_MODEL(section)); -- cgit v1.2.3