Feat/2334 channel indicators (#2356)

Signed-off-by: DaneEvans <dane@goneepic.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
DaneEvans 2025-07-07 12:31:36 +10:00 committed by GitHub
parent ffd399f44d
commit aa9ce9dfdf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 318 additions and 98 deletions

View file

@ -494,7 +494,7 @@ private fun DebugMenuActionsPreview() {
) {
Icon(
imageVector = Icons.Outlined.FileDownload,
contentDescription = "Export Logs"
contentDescription = stringResource(id = R.string.debug_logs_export)
)
}
IconButton(
@ -503,7 +503,7 @@ private fun DebugMenuActionsPreview() {
) {
Icon(
imageVector = Icons.Default.Delete,
contentDescription = "Clear All"
contentDescription = stringResource(id = R.string.debug_clear)
)
}
}
@ -559,7 +559,7 @@ private fun DebugScreenEmptyPreview() {
)
Icon(
imageVector = Icons.TwoTone.FilterAltOff,
contentDescription = "Filter"
contentDescription = stringResource(id = R.string.debug_filters)
)
}
}
@ -709,7 +709,7 @@ fun DebugMenuActions(
) {
Icon(
imageVector = Icons.Outlined.FileDownload,
contentDescription = "Export Logs"
contentDescription = stringResource(id = R.string.debug_logs_export)
)
}
IconButton(
@ -718,7 +718,7 @@ fun DebugMenuActions(
) {
Icon(
imageVector = Icons.Default.Delete,
contentDescription = "Clear All"
contentDescription = stringResource(id = R.string.debug_clear)
)
}
if (showDeleteLogsDialog) {

View file

@ -101,7 +101,7 @@ fun DebugCustomFilterInput(
) {
Icon(
imageVector = Icons.Default.Add,
contentDescription = "Add filter"
contentDescription = stringResource(id = R.string.debug_filter_add)
)
}
}
@ -151,7 +151,7 @@ internal fun DebugPresetFilters(
leadingIcon = { if (filter in filterTexts) {
Icon(
imageVector = Icons.Filled.Done,
contentDescription = "Done icon",
contentDescription = stringResource(id = R.string.debug_filter_included),
)
}
}
@ -194,7 +194,7 @@ internal fun DebugFilterBar(
} else {
Icons.TwoTone.FilterAltOff
},
contentDescription = "Filter"
contentDescription = stringResource(id = R.string.debug_filters)
)
}
}
@ -270,7 +270,7 @@ internal fun DebugActiveFilters(
) {
Icon(
imageVector = Icons.Default.Clear,
contentDescription = "Clear all filters"
contentDescription = stringResource(id = R.string.debug_filter_clear)
)
}
}

View file

@ -83,7 +83,7 @@ internal fun DebugSearchNavigation(
) {
Icon(
imageVector = Icons.Default.KeyboardArrowUp,
contentDescription = "Previous match",
contentDescription = stringResource(R.string.debug_search_prev),
modifier = Modifier.size(16.dp)
)
}
@ -94,7 +94,7 @@ internal fun DebugSearchNavigation(
) {
Icon(
imageVector = Icons.Default.KeyboardArrowDown,
contentDescription = "Next match",
contentDescription = stringResource(R.string.debug_search_next),
modifier = Modifier.size(16.dp)
)
}
@ -143,7 +143,7 @@ internal fun DebugSearchBar(
) {
Icon(
imageVector = Icons.Default.Clear,
contentDescription = "Clear search",
contentDescription = stringResource(R.string.debug_search_clear),
modifier = Modifier.size(16.dp)
)
}