diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-20 15:48:14 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-20 11:35:28 -0700 |
commit | 4c8ed5a5aeb76dad721fbd04b17d6043b5728e31 (patch) | |
tree | 4dd318ed9bdb4e2f6dcd4e191b399d5648efd364 | |
parent | d8fa24dcd8dadae6fd1d43a4a0a76f702bce14cb (diff) | |
download | subsurface-4c8ed5a5aeb76dad721fbd04b17d6043b5728e31.tar.gz |
QML UI: allow changing the connection ID
When downloading with bluetooth, changing connection did not work.
The new selection was not passed to the download thread.
Fixes #1274
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/DownloadFromDiveComputer.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index 4059683a1..1fd374b4a 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -169,6 +169,7 @@ Kirigami.Page { downloadThread.deviceData.bluetoothMode = true else downloadThread.deviceData.bluetoothMode = false + downloadThread.deviceData.devName = comboConnection.currentText } } } |