diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-12-03 17:57:25 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-03 17:57:25 -0800 |
commit | b0063e5d1a6004e4459a872ae166065e52e460d6 (patch) | |
tree | 530f0104d41c63c9d7f34ac09384ec3636830cec /qt-mobile/qml/Preferences.qml | |
parent | 2fc99092fb71ee58e1009b9e402e7af38afd6653 (diff) | |
download | subsurface-b0063e5d1a6004e4459a872ae166065e52e460d6.tar.gz |
QML-UI: use our styled elements
This gets us consistent look and feel as otherwise the labels aren't styled the
same as for the rest of the application.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/Preferences.qml')
-rw-r--r-- | qt-mobile/qml/Preferences.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-mobile/qml/Preferences.qml b/qt-mobile/qml/Preferences.qml index de70d17b0..df06c42e7 100644 --- a/qt-mobile/qml/Preferences.qml +++ b/qt-mobile/qml/Preferences.qml @@ -29,7 +29,7 @@ Item { Layout.columnSpan: 2 } - Label { + MobileComponents.Label { text: "Distance threshold (meters)" Layout.alignment: Qt.AlignRight } @@ -40,7 +40,7 @@ Item { Layout.fillWidth: true } - Label { + MobileComponents.Label { text: "Time threshold (minutes)" Layout.alignment: Qt.AlignRight } |