Skip to content

Commit

Permalink
correct button values according to text displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
Lambada10 committed Oct 17, 2024
1 parent 9a0117a commit 5a0b81d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fun LyricsSuccessContent(
)
Spacer(modifier = Modifier.weight(1f))
OutlinedButton(onClick = { onSetOffset(offset - 100) }) {
Text(text = "-100")
Text(text = "-0.1s")
}
Spacer(modifier = Modifier.width(10.dp))
Text(
Expand All @@ -67,7 +67,7 @@ fun LyricsSuccessContent(
)
Spacer(modifier = Modifier.width(10.dp))
OutlinedButton(onClick = { onSetOffset(offset + 100) }) {
Text(text = "+100")
Text(text = "+0.1s")
}
}

Expand Down

0 comments on commit 5a0b81d

Please sign in to comment.