From 05318d5f7ddffdde3d733e67b3a6078ea97a0538 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 13 Apr 2026 19:37:16 -0400 Subject: [PATCH] Using better icons for the ear sound --- .../com/vitorpamplona/amethyst/ui/call/ConnectedCallUI.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/call/ConnectedCallUI.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/call/ConnectedCallUI.kt index e78235ec4..5bcb65943 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/call/ConnectedCallUI.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/call/ConnectedCallUI.kt @@ -37,7 +37,6 @@ import androidx.compose.foundation.layout.statusBars import androidx.compose.foundation.layout.windowInsetsPadding import androidx.compose.foundation.shape.CircleShape import androidx.compose.material.icons.Icons -import androidx.compose.material.icons.automirrored.filled.VolumeOff import androidx.compose.material.icons.automirrored.filled.VolumeUp import androidx.compose.material.icons.filled.BluetoothAudio import androidx.compose.material.icons.filled.CallEnd @@ -48,6 +47,7 @@ import androidx.compose.material.icons.filled.MicOff import androidx.compose.material.icons.filled.PersonAdd import androidx.compose.material.icons.filled.Videocam import androidx.compose.material.icons.filled.VideocamOff +import androidx.compose.material.icons.outlined.Hearing import androidx.compose.material3.AlertDialog import androidx.compose.material3.FloatingActionButton import androidx.compose.material3.Icon @@ -303,7 +303,7 @@ private fun CallControls( Icon( imageVector = when (currentAudioRoute) { - AudioRoute.EARPIECE -> Icons.AutoMirrored.Filled.VolumeOff + AudioRoute.EARPIECE -> Icons.Outlined.Hearing AudioRoute.SPEAKER -> Icons.AutoMirrored.Filled.VolumeUp AudioRoute.BLUETOOTH -> Icons.Default.BluetoothAudio },