Index: sources/gui/qml/pages/settings/SettingsStack.qml =================================================================== diff -u -r2dd767833cf0cf706c457951c2d78e7e20aff768 -r028cb1403e8fcb2d2e9ab2aa1562f660124015b1 --- sources/gui/qml/pages/settings/SettingsStack.qml (.../SettingsStack.qml) (revision 2dd767833cf0cf706c457951c2d78e7e20aff768) +++ sources/gui/qml/pages/settings/SettingsStack.qml (.../SettingsStack.qml) (revision 028cb1403e8fcb2d2e9ab2aa1562f660124015b1) @@ -175,7 +175,7 @@ top : parent.top topMargin : _settingsBluetooth.topMarginContent right : parent.right - rightMargin : 50 + rightMargin : 0 // the image itself has some margins // kept to make sure it was intentional. } } Column { id : _deviceColumn @@ -229,10 +229,18 @@ text.text : qsTr("SCAN") width : 300 isDefault : false - enabled :!vBluetooth.scanInProgress - onClicked : vBluetooth.doScan() + enabled : ! vBluetooth.scanInProgress + onClicked : vBluetooth.doScan() } + WaitDone { id : _scanIndication + anchors.horizontalCenter : parent.horizontalCenter + anchors.verticalCenter : _scanButton.verticalCenter + diameter : _scanButton.height + visible : vBluetooth.scanInProgress + // done : _delegate.stepDone + } + notificationText : vBluetooth.notification }