From b57b26803da793d3129fa28310e82ffb476e72f3 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Thu, 17 Mar 2022 16:08:28 -0400 Subject: [PATCH] kcm: Fix missing property --- kcms/mobileshell/package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcms/mobileshell/package/contents/ui/main.qml b/kcms/mobileshell/package/contents/ui/main.qml index 11135c02..ff910d5e 100644 --- a/kcms/mobileshell/package/contents/ui/main.qml +++ b/kcms/mobileshell/package/contents/ui/main.qml @@ -41,7 +41,7 @@ KCM.SimpleKCM { text: i18n("Gesture-only Mode") description: i18n("Whether to hide the navigation panel.") checked: !kcm.navigationPanelEnabled - switchControl.onCheckStateChanged: { + onCheckedChanged: { if (checked != !kcm.navigationPanelEnabled) { kcm.navigationPanelEnabled = !checked; }