From cadb072a0c1897291920849458700c4f5878a2c3 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 18 Oct 2018 06:32:55 -0400 Subject: Mobile/filtering: improve code readability Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/DiveList.qml | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) (limited to 'mobile-widgets') diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index d8adbf73e..9c2c9fbb8 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -385,37 +385,23 @@ Kirigami.ScrollablePage { from: "isHidden" to: "isVisible" SequentialAnimation { - NumberAnimation { - property: "visible" - duration: 1 - } - NumberAnimation { - property: "height" - duration: 200 - easing.type: Easing.InOutQuad - } + NumberAnimation { property: "visible"; duration: 1 } + NumberAnimation { property: "height"; duration: 200; easing.type: Easing.InOutQuad } } }, Transition { from: "isVisible" to: "isHidden" SequentialAnimation { - NumberAnimation { - property: "height" - duration: 200 - easing.type: Easing.InOutQuad - } - NumberAnimation { - property: "visible" - duration: 1 - } + NumberAnimation { property: "height"; duration: 200; easing.type: Easing.InOutQuad } + NumberAnimation { property: "visible"; duration: 1 } } } ] anchors.left: parent.left anchors.right: parent.right - Rectangle { + Rectangle { // margins didn't work, but adding a rectangle did width: Kirigami.Units.gridUnit / 4 } onVisibleChanged: numShown.text = diveModel.shown() -- cgit v1.2.3-70-g09d2