diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-04 14:22:16 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-04 14:22:16 -0700 |
commit | d8ec9597fa27a5e90f4d24d1b96d6604949bf7df (patch) | |
tree | 22a9875fdd247a2abac012cda552917a748c5060 | |
parent | e50a3470c1810d5c80ff8f96e03a50dbc9fba254 (diff) | |
download | subsurface-d8ec9597fa27a5e90f4d24d1b96d6604949bf7df.tar.gz |
Revert "QML UI: animate showing the dive edit sheet"
This reverts commit faa22d5343f39f335bc281e139bc347241295ebf.
Upstream Kirigami already had a property to do this. Oops.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-mobile/qml/DiveDetails.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index 2b2d4da38..c3f5707cf 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -42,17 +42,17 @@ Kirigami.Page { State { name: "view" PropertyChanges { target: diveDetailsPage; contextualActions: Qt.platform.os == "ios" ? [ deleteAction, backAction ] : [ deleteAction ] } - PropertyChanges { target: detailsEditScroll; show: false } + PropertyChanges { target: detailsEditScroll; visible: false } }, State { name: "edit" PropertyChanges { target: diveDetailsPage; contextualActions: Qt.platform.os == "ios" ? [ cancelAction ] : null } - PropertyChanges { target: detailsEditScroll; show: true } + PropertyChanges { target: detailsEditScroll; visible: true } }, State { name: "add" PropertyChanges { target: diveDetailsPage; contextualActions: Qt.platform.os == "ios" ? [ cancelAction ] : null } - PropertyChanges { target: detailsEditScroll; show: true } + PropertyChanges { target: detailsEditScroll; visible: true } } ] |