diff options
author | 2015-07-17 11:57:21 -0700 | |
---|---|---|
committer | 2015-07-17 12:00:38 -0700 | |
commit | d595f5c167c7283dc22f902ed0b18a7d6da2221e (patch) | |
tree | 10efaa6874740510a90fb9144facd7abe86ab577 /qt-mobile/main.qml | |
parent | 76e61bd8d9baea008628bf5b176cf8f0b664e78f (diff) | |
parent | 0c9756c5d786158f25aaf1ad2d9c316be9e2b9e5 (diff) | |
download | subsurface-d595f5c167c7283dc22f902ed0b18a7d6da2221e.tar.gz |
Merge branch 'devel' of https://github.com/gracie89/subsurface
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r-- | qt-mobile/main.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index dac37e09b..d64c27760 100644 --- a/qt-mobile/main.qml +++ b/qt-mobile/main.qml @@ -54,6 +54,14 @@ ApplicationWindow { manager.loadDives(); } } + + Button { + id: saveChanges + text: "Save Changes" + onClicked: { + manager.saveChanges(); + } + } } } |