From de5bb98dba99e0927fbc2b6eb88c421f71d9b68f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Fri, 4 Dec 2015 03:38:58 +0100 Subject: [PATCH] dive edit gets contextual actions Option to switch between view and edit and to save the changes are now in the context drawer. Let's see how this works out. If it turns out to be badly discoverable (which is what I'm worried about), this needs to be fixed at component level. --- qt-mobile/qml/DiveDetails.qml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index f60d39acb..d46777e41 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -1,5 +1,5 @@ import QtQuick 2.3 -import QtQuick.Controls 1.2 +import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.2 import QtQuick.Dialogs 1.2 import QtQuick.Layouts 1.1 @@ -75,20 +75,6 @@ MobileComponents.Page { width: flick.width height: childrenRect.height + MobileComponents.Units.smallSpacing * 2 - Button { - checkable: true - text: "Edit" - z: 999 - anchors { - top: parent.top - right: parent.right - margins: MobileComponents.Units.gridUnit / 2 - } - onCheckedChanged: { - diveDetailsWindow.state = checked ? "edit" : "view" - } - } - DiveDetailsEdit { id: detailsEdit anchors {