summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2017-12-07 14:40:23 +0100
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2017-12-07 18:15:40 +0100
commit1c223b09c310d65ca554cae455cdc74fc33da60f (patch)
tree4073e2326060fa218c00ebe85dceb69b5793c990 /mobile-widgets
parent127abec62c713e46d9651b887a675cb2f572227d (diff)
downloadsubsurface-1c223b09c310d65ca554cae455cdc74fc33da60f.tar.gz
Show BT device names first
Show them left of address (so they are in the user's view) rather than on the right. Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/DownloadFromDiveComputer.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml
index 199f6aa67..eafc22150 100644
--- a/mobile-widgets/qml/DownloadFromDiveComputer.qml
+++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml
@@ -199,7 +199,7 @@ Kirigami.Page {
text = qsTr("Retry")
// strip any BT Name from the address
var devName = downloadThread.deviceData.devName
- downloadThread.deviceData.devName = devName.replace(/ (.*)$/, "")
+ downloadThread.deviceData.devName = devName.replace(/^(.*) /, "")
manager.appendTextToLog("DCDownloadThread started for " + downloadThread.deviceData.product + " on "+ downloadThread.deviceData.devName)
progressBar.visible = true
downloadThread.start()