From f75419748b55b7b8661627c38d0b09ac0e698a8e Mon Sep 17 00:00:00 2001 From: Tim Gromeyer Date: Thu, 17 Apr 2025 09:59:49 +0200 Subject: [PATCH] Remove unused code --- linux/Main.qml | 18 ++++++------------ linux/PodColumn.qml | 1 - 2 files changed, 6 insertions(+), 13 deletions(-) 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