Skip to content

Commit

Permalink
Fix checkstyle comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zwarm committed Jun 10, 2024
1 parent 8c92669 commit ae00938
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 @@ -43,7 +43,7 @@ fun MicToStopIcon(model: RecordingPanelUIModel) {
val isLight = !isSystemInDarkTheme()

val circleColor by animateColorAsState(
targetValue = if (!isEnabled) MaterialTheme.colors.onSurface.copy(alpha = 0.3f) //ContentAlpha.disabled or 0.3f)
targetValue = if (!isEnabled) MaterialTheme.colors.onSurface.copy(alpha = 0.3f)
else if (isMic) MaterialTheme.colors.primary
else if (isLight) Color.Black
else Color.White, label = ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ fun RecordingPanel(model: VoiceToContentUiState, amplitudes: List<Float>) {
horizontalArrangement = Arrangement.Center,
modifier = Modifier
.fillMaxWidth()
.background(Color.Transparent) // todo: annmarie double check if this is needed
.background(Color.Transparent)
) {
Column(
horizontalAlignment = Alignment.CenterHorizontally,
Expand Down

0 comments on commit ae00938

Please sign in to comment.