Skip to content

Commit

Permalink
Fix: For visibility also leave the yellow color on the selected Asteroid
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanOltmann committed Oct 22, 2024
1 parent 2f63ea9 commit f920e86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/commonMain/kotlin/ui/filter/ClusterSelection.kt
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ fun ClusterSelection(
Text(
text = cluster.displayName,
style = MaterialTheme.typography.bodyLarge,
color = if (clusterHovered.value)
color = if (clusterHovered.value || isSelected)
hoverColor
else
MaterialTheme.colorScheme.onBackground,
Expand Down

0 comments on commit f920e86

Please sign in to comment.