diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-27 13:31:44 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-28 02:21:20 +0900 |
commit | af1ca2af819e6b9de199a2f3c892135f872a2f6f (patch) | |
tree | b947804fa160093da9a52ab69f05e4b4270073f2 | |
parent | 88cbcf5c6ea56a8e31617a426e7ca8221999afe8 (diff) | |
download | subsurface-af1ca2af819e6b9de199a2f3c892135f872a2f6f.tar.gz |
mobile-widget/qml: avoid binding loop in GlobalDrawer
rightPadding seems defined in Kirigami and the default value
causes a binding loop.
set rightPadding directly.
Signed-off-by: Jan Iversen <jan@casacondor.com>
-rw-r--r-- | mobile-widgets/qml/main.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index c35e2b15e..202027852 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -163,6 +163,7 @@ Kirigami.ApplicationWindow { globalDrawer: Kirigami.GlobalDrawer { id: gDrawer height: rootItem.height + rightPadding: 0 enabled: (prefs.credentialStatus === CloudStatus.CS_NOCLOUD || prefs.credentialStatus === CloudStatus.CS_VERIFIED) topContent: Image { |