summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-01-11 15:29:45 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-10 09:25:57 -0700
commitaf4bd16f88f6bedaf5d7387844ab4b8d5b1848cc (patch)
tree1731238eaee0166e804841e2925e69381bae8553 /mobile-widgets/qml
parent8e6cc9b8d0dd5d312440b3329ee0dc4c5a133f4e (diff)
downloadsubsurface-af4bd16f88f6bedaf5d7387844ab4b8d5b1848cc.tar.gz
mobile: replace undoDelete() with generic undo()
Since we are using the existing command infrastructure, this isn't specific to undoing a delete. This commit renames the function and removes its use in the UI, the next commit will then add the generic undo to the UI. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r--mobile-widgets/qml/DiveDetails.qml9
1 files changed, 1 insertions, 8 deletions
diff --git a/mobile-widgets/qml/DiveDetails.qml b/mobile-widgets/qml/DiveDetails.qml
index 5d52b89ca..a886a2c50 100644
--- a/mobile-widgets/qml/DiveDetails.qml
+++ b/mobile-widgets/qml/DiveDetails.qml
@@ -152,14 +152,7 @@ Kirigami.Page {
icon {
name: ":/icons/trash-empty.svg"
}
- onTriggered: {
- var deletedId = currentItem.modelData.id
- manager.deleteDive(deletedId)
- showPassiveNotification("Dive deleted", 5000, "Undo",
- function() {
- manager.undoDelete(deletedId)
- });
- }
+ onTriggered: manager.deleteDive(currentItem.modelData.id)
}
property QtObject cancelAction: Kirigami.Action {