ui: Remove noise control label from DeviceSettingsScreen

This commit is contained in:
darken
2026-04-07 15:36:20 +02:00
parent f67336d4fe
commit 57fc4d8e7b
@@ -1007,12 +1007,6 @@ private fun NoiseControlCombined(
elevation = CardDefaults.elevatedCardElevation(defaultElevation = 1.dp),
) {
Column(modifier = Modifier.padding(vertical = 4.dp)) {
Text(
text = stringResource(R.string.device_settings_noise_control_label),
style = MaterialTheme.typography.labelMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant,
modifier = Modifier.padding(start = 16.dp, top = 8.dp, bottom = 4.dp),
)
for (mode in supportedModes) {
val isSelected = mode == displayMode
val bit = cycleBits[mode] ?: continue