From 3da64f6bc51f227870e9a20d9f8460f4c23e814e Mon Sep 17 00:00:00 2001 From: Madjid Taha Date: Sat, 25 Oct 2025 00:59:42 +0200 Subject: [PATCH] fix useMouseSymbol boolean typo --- dots/.config/quickshell/ii/modules/settings/AdvancedConfig.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/settings/AdvancedConfig.qml b/dots/.config/quickshell/ii/modules/settings/AdvancedConfig.qml index 4dc71faa2..f126cc0d8 100644 --- a/dots/.config/quickshell/ii/modules/settings/AdvancedConfig.qml +++ b/dots/.config/quickshell/ii/modules/settings/AdvancedConfig.qml @@ -199,7 +199,7 @@ ContentPage { ConfigSwitch { buttonIcon: "󰍽" text: Translation.tr("Use symbols for mouse") - checked: Config.options.appearance.keybinds.s + checked: Config.options.appearance.keybinds.useMouseSymbol onCheckedChanged: { Config.options.appearance.keybinds.useMouseSymbol = checked; }