This commit is contained in:
Ly-sec
2025-12-25 20:47:20 +01:00
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ Item {
}
// CavaService registration for visualizer
readonly property string cavaComponentId: "bar:mediamini:" + root.screen.name + ":" + root.section + ":" + root.sectionWidgetIndex
readonly property string cavaComponentId: "bar:mediamini:" + root.screen?.name + ":" + root.section + ":" + root.sectionWidgetIndex
readonly property bool needsCava: root.showVisualizer && root.visualizerType !== "" && root.visualizerType !== "none"
onNeedsCavaChanged: {
+3 -1
View File
@@ -202,7 +202,9 @@ BluetoothAgent {
id: discoveryTimer
interval: 1000
repeat: false
onTriggered: adapter.discovering = true
onTriggered: {
if (adapter) adapter.discovering = true
}
}
Connections {