From 2653e2d81621764029d4664a28a43ca68efc58b0 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sat, 18 Mar 2023 17:32:19 -0700 Subject: [PATCH] actiondrawer: Fix typo --- .../mobileshell/qml/actiondrawer/ActionDrawerOpenSurface.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mobileshell/qml/actiondrawer/ActionDrawerOpenSurface.qml b/components/mobileshell/qml/actiondrawer/ActionDrawerOpenSurface.qml index 78a5488e..a0871ad7 100644 --- a/components/mobileshell/qml/actiondrawer/ActionDrawerOpenSurface.qml +++ b/components/mobileshell/qml/actiondrawer/ActionDrawerOpenSurface.qml @@ -48,7 +48,7 @@ MouseArea { // if the user swiped from the top left, otherwise it's from the top right if (mouse.x < root.width / 2) { - actionDrawer.openToPinnedMode = ShellSettings.Settings.actionDrawerTopLeftMode == ShellSettings.Settingss.Pinned; + actionDrawer.openToPinnedMode = ShellSettings.Settings.actionDrawerTopLeftMode == ShellSettings.Settings.Pinned; } else { actionDrawer.openToPinnedMode = ShellSettings.Settings.actionDrawerTopRightMode == ShellSettings.Settings.Pinned; }