aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-02-10 15:02:21 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-02-10 20:58:11 -0800
commitab36a3dad11da7f1d40f26412cef1d54a7852eac (patch)
tree694b523e60ac873be4c82e7c0b078bcf57cd76e5 /qt-mobile
parent82a982b90370cf09c8ac43d68ade30d010fcfd12 (diff)
downloadsubsurface-ab36a3dad11da7f1d40f26412cef1d54a7852eac.tar.gz
QML UI: make back key work for all pages
Reported by a beta tester for the GPS preferences, but affects a couple more. We need to make sure that any page on the page stack is actually a MobileComponents.Page, other wise the Android back key doesn't close the page. This commit changes GPS preferences, the theme test, and the currently disabled download from divecomputer. it contains only the actual change (wrap the current content in a page). The reindentation is a separate commit for readability. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r--qt-mobile/qml/DownloadFromDiveComputer.qml3
-rw-r--r--qt-mobile/qml/Preferences.qml3
-rw-r--r--qt-mobile/qml/ThemeTest.qml2
3 files changed, 7 insertions, 1 deletions
diff --git a/qt-mobile/qml/DownloadFromDiveComputer.qml b/qt-mobile/qml/DownloadFromDiveComputer.qml
index 2cbbfadc6..fb2d0085b 100644
--- a/qt-mobile/qml/DownloadFromDiveComputer.qml
+++ b/qt-mobile/qml/DownloadFromDiveComputer.qml
@@ -5,7 +5,9 @@ import QtQuick.Window 2.2
import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.1
import org.subsurfacedivelog.mobile 1.0
+import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
+MobileComponents.Page {
Item {
id: diveComputerDownloadWindow
anchors.top:parent.top
@@ -109,3 +111,4 @@ Item {
}
}
}
+}
diff --git a/qt-mobile/qml/Preferences.qml b/qt-mobile/qml/Preferences.qml
index c8b172b31..3a092f348 100644
--- a/qt-mobile/qml/Preferences.qml
+++ b/qt-mobile/qml/Preferences.qml
@@ -6,7 +6,7 @@ import QtQuick.Layouts 1.1
import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
import org.subsurfacedivelog.mobile 1.0
-
+MobileComponents.Page {
GridLayout {
signal accept
@@ -75,3 +75,4 @@ GridLayout {
Layout.fillHeight: true
}
}
+}
diff --git a/qt-mobile/qml/ThemeTest.qml b/qt-mobile/qml/ThemeTest.qml
index 07e11cbce..f3d9d072d 100644
--- a/qt-mobile/qml/ThemeTest.qml
+++ b/qt-mobile/qml/ThemeTest.qml
@@ -2,6 +2,7 @@ import QtQuick 2.5
import QtQuick.Layouts 1.1
import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
+MobileComponents.Page {
GridLayout {
id: themetest
columns: 2
@@ -95,3 +96,4 @@ GridLayout {
Layout.fillHeight: true
}
}
+}