Remove unused code

This commit is contained in:
Tim Gromeyer
2025-04-17 09:59:49 +02:00
committed by Tim Gromeyer
parent 2bb2b0e697
commit f75419748b
2 changed files with 6 additions and 13 deletions

View File

@@ -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

View File

@@ -25,7 +25,6 @@ Column {
BatteryIndicator {
batteryLevel: parent.batteryLevel
isCharging: parent.isCharging
darkMode: true
indicator: parent.indicator
}
}