Skip to content

Commit

Permalink
Changed skip in player to 5s #768
Browse files Browse the repository at this point in the history
  • Loading branch information
fast4x committed Feb 19, 2024
1 parent b7f8cb0 commit 1a5f628
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ fun Controls(
if (effectRotationEnabled) isRotated = !isRotated
},
onLongClick = {
binder.player.seekTo(position-10000)
binder.player.seekTo(position-5000)
}
)
.rotate(rotationAngle)
Expand Down Expand Up @@ -687,7 +687,7 @@ fun Controls(
if (effectRotationEnabled) isRotated = !isRotated
},
onLongClick = {
binder.player.seekTo(position+10000)
binder.player.seekTo(position+5000)
}
)
.rotate(rotationAngle)
Expand Down

0 comments on commit 1a5f628

Please sign in to comment.