From 1a5f6282a4e93a3a996e5244c3ecf3152c5d7f48 Mon Sep 17 00:00:00 2001 From: Rino Russo Date: Mon, 19 Feb 2024 22:24:32 +0100 Subject: [PATCH] Changed skip in player to 5s #768 --- .../kotlin/it/vfsfitvnm/vimusic/ui/screens/player/Controls.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/player/Controls.kt b/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/player/Controls.kt index 38cf51e8a7..33d582533f 100644 --- a/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/player/Controls.kt +++ b/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/player/Controls.kt @@ -610,7 +610,7 @@ fun Controls( if (effectRotationEnabled) isRotated = !isRotated }, onLongClick = { - binder.player.seekTo(position-10000) + binder.player.seekTo(position-5000) } ) .rotate(rotationAngle) @@ -687,7 +687,7 @@ fun Controls( if (effectRotationEnabled) isRotated = !isRotated }, onLongClick = { - binder.player.seekTo(position+10000) + binder.player.seekTo(position+5000) } ) .rotate(rotationAngle)