Skip to content

Commit

Permalink
Fix color of category title
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Nov 28, 2023
1 parent bf0dca1 commit 1290f95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private fun SoundGroup(
var collapsed by remember { mutableStateOf(false) }
val strings = LocalStrings.current
Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.fillMaxWidth()) {
Text(group.tag ?: strings.otherSounds, color = Color.White)
Text(group.tag ?: strings.otherSounds, color = ColorScheme.current.textColor)
CollapseIcon(collapsed, Modifier.clickable { collapsed = !collapsed })
Divider(Modifier.fillMaxWidth().padding(5.dp))
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.17.8"
version = "1.17.9"

repositories {
mavenCentral()
Expand Down

0 comments on commit 1290f95

Please sign in to comment.