mirror of
https://github.com/permissionlesstech/bitchat-android.git
synced 2026-07-25 00:05:19 +00:00
use bluetooth icon (#597)
This commit is contained in:
@@ -635,7 +635,7 @@ private fun PeerItem(
|
|||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = if (isDirect) Icons.Outlined.SettingsInputAntenna else Icons.Filled.Route,
|
imageVector = if (isDirect) Icons.Outlined.Bluetooth else Icons.Filled.Route,
|
||||||
contentDescription = if (isDirect) "Direct Bluetooth" else "Routed",
|
contentDescription = if (isDirect) "Direct Bluetooth" else "Routed",
|
||||||
modifier = Modifier.size(16.dp),
|
modifier = Modifier.size(16.dp),
|
||||||
tint = colorScheme.onSurface.copy(alpha = 0.6f)
|
tint = colorScheme.onSurface.copy(alpha = 0.6f)
|
||||||
@@ -920,7 +920,7 @@ fun PrivateChatSheet(
|
|||||||
when {
|
when {
|
||||||
isDirect -> {
|
isDirect -> {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = Icons.Outlined.SettingsInputAntenna,
|
imageVector = Icons.Outlined.Bluetooth,
|
||||||
contentDescription = stringResource(R.string.cd_connected_peers),
|
contentDescription = stringResource(R.string.cd_connected_peers),
|
||||||
modifier = Modifier.size(14.dp),
|
modifier = Modifier.size(14.dp),
|
||||||
tint = colorScheme.onSurface.copy(alpha = 0.6f)
|
tint = colorScheme.onSurface.copy(alpha = 0.6f)
|
||||||
|
|||||||
Reference in New Issue
Block a user