Skip to content

Commit

Permalink
Fixing bottom offset slider. (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Apr 14, 2024
1 parent dea3d03 commit 2385d8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fun LookAndFeelActivity(
val nonSquareKeysState = remember { mutableStateOf(settings?.keySize !== (settings?.keyWidth ?: settings?.keySize)) }

var pushupSizeState = (settings?.pushupSize ?: DEFAULT_PUSHUP_SIZE).toFloat()
var pushupSizeSliderState = pushupSizeState
var pushupSizeSliderState by remember { mutableFloatStateOf(pushupSizeState) }

var animationSpeedState = (settings?.animationSpeed ?: DEFAULT_ANIMATION_SPEED).toFloat()
var animationSpeedSliderState by remember { mutableFloatStateOf(animationSpeedState) }
Expand Down

0 comments on commit 2385d8c

Please sign in to comment.