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.
This commit is contained in:
Micah Stanley 2024-11-14 03:50:24 +00:00 committed by Devin Lin
parent 24d3186834
commit 65c2be29e7

View file

@ -83,7 +83,7 @@ ContainmentItem {
Binding {
target: MobileShellState.ShellDBusClient
property: "isActionDrawerOpen"
value: drawer.visible
value: drawer.intendedToBeVisible
}
//END API implementation