[Linux] Add setting to change bluetooth retry attempts

This commit is contained in:
Tim Gromeyer
2025-04-22 14:06:38 +02:00
committed by Tim Gromeyer
parent 913e1a5aff
commit db763d7290
2 changed files with 34 additions and 1 deletions

View File

@@ -200,6 +200,20 @@ ApplicationWindow {
onCheckedChanged: airPodsTrayApp.notificationsEnabled = checked
}
Row {
spacing: 5
Label {
text: "Bluetooth Retry Attempts:"
anchors.verticalCenter: parent.verticalCenter
}
SpinBox {
from: 1
to: 10
value: airPodsTrayApp.retryAttempts
onValueChanged: airPodsTrayApp.retryAttempts = value
}
}
Row {
spacing: 10
visible: airPodsTrayApp.airpodsConnected