diff --git a/linux/Main.qml b/linux/Main.qml index d25742e..8db5c9b 100644 --- a/linux/Main.qml +++ b/linux/Main.qml @@ -75,17 +75,6 @@ ApplicationWindow { visible: airPodsTrayApp.airpodsConnected } - Text { - text: "Ear Detection Status: " + airPodsTrayApp.earDetectionStatus - color: "#ffffff" - } - - Switch { - text: "Conversational Awareness" - checked: airPodsTrayApp.conversationalAwareness - onCheckedChanged: airPodsTrayApp.conversationalAwareness = checked - } - Slider { visible: airPodsTrayApp.adaptiveModeActive from: 0 @@ -104,11 +93,16 @@ ApplicationWindow { Label { text: "Adaptive Noise Level: " + parent.value - color: "#ffffff" anchors.top: parent.bottom } } + Switch { + text: "Conversational Awareness" + checked: airPodsTrayApp.conversationalAwareness + onCheckedChanged: airPodsTrayApp.conversationalAwareness = checked + } + Row { spacing: 10 diff --git a/linux/PodColumn.qml b/linux/PodColumn.qml index fdde48e..66fe14b 100644 --- a/linux/PodColumn.qml +++ b/linux/PodColumn.qml @@ -25,7 +25,6 @@ Column { BatteryIndicator { batteryLevel: parent.batteryLevel isCharging: parent.isCharging - darkMode: true indicator: parent.indicator } } \ No newline at end of file