Skip to content

Commit

Permalink
Fix accidental change to counter button padding
Browse files Browse the repository at this point in the history
  • Loading branch information
KangarooKoala committed Mar 18, 2024
1 parent 122afd9 commit 690062f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ fun CounterBar(
temporaryCount -= incrementStep
onValueChange.invoke(temporaryCount)
},
modifier = Modifier.padding(end = 5.dp),
modifier = Modifier.padding(start = 5.dp),
enabled = enabled,
colors = IconButtonDefaults.iconButtonColors(
disabledContentColor = MaterialTheme.colorScheme.onBackground
Expand All @@ -126,7 +126,7 @@ fun CounterBar(
temporaryCount += incrementStep
onValueChange.invoke(temporaryCount)
},
modifier = Modifier.padding(start = 5.dp),
modifier = Modifier.padding(end = 5.dp),
enabled = enabled,
colors = IconButtonDefaults.iconButtonColors(
disabledContentColor = MaterialTheme.colorScheme.onBackground
Expand Down

0 comments on commit 690062f

Please sign in to comment.