diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-05-28 02:23:03 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-05-28 02:23:03 -0700 |
commit | a492b8bbd0d9ccc1da0b959fe576265722948628 (patch) | |
tree | e6ef21365e73f47dadec42c630934b3d08e17724 /mobile-widgets/qml/DownloadFromDiveComputer.qml | |
parent | e255a698cb12a6e25d6f13aef3f7428dd7bc56fe (diff) | |
download | subsurface-a492b8bbd0d9ccc1da0b959fe576265722948628.tar.gz |
QML UI: fix typo in component id
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DownloadFromDiveComputer.qml')
-rw-r--r-- | mobile-widgets/qml/DownloadFromDiveComputer.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index 9a56abe23..13a6b7eb1 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -17,7 +17,7 @@ Kirigami.Page { title: qsTr("Dive Computer") DCDownloadThread { - id: downlodaThread + id: downloadThread deviceData.vendor : comboVendor.currentText deviceData.product : comboProduct.currentText @@ -73,7 +73,7 @@ Kirigami.Page { text: qsTr("Download") onClicked: { text: qsTr("Retry") - downlodaThread.start() + downloadThread.start() } } Button { |