From 65c2be29e7448923d07f08c450259819a6d0c380 Mon Sep 17 00:00:00 2001 From: Micah Stanley Date: Thu, 14 Nov 2024 03:50:24 +0000 Subject: [PATCH] mobileshellstate: update isActionDrawerOpen to use intendedToBeVisible The drawer was recently updated where it is now technically always is visible. So we need to update the binding for MobileShellState to use drawer.intendedToBeVisible so that it works properly. --- containments/panel/package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/panel/package/contents/ui/main.qml b/containments/panel/package/contents/ui/main.qml index 50e28de3..5897251c 100644 --- a/containments/panel/package/contents/ui/main.qml +++ b/containments/panel/package/contents/ui/main.qml @@ -83,7 +83,7 @@ ContainmentItem { Binding { target: MobileShellState.ShellDBusClient property: "isActionDrawerOpen" - value: drawer.visible + value: drawer.intendedToBeVisible } //END API implementation