From dcef25a52605716724216d712ee4d36a937a1b09 Mon Sep 17 00:00:00 2001 From: acite <1498045907@qq.com> Date: Sat, 27 Sep 2025 17:35:38 +0800 Subject: [PATCH] [update] Reduce the protected area --- .../java/com/acitelight/aether/view/VideoPlayerLandscape.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/acitelight/aether/view/VideoPlayerLandscape.kt b/app/src/main/java/com/acitelight/aether/view/VideoPlayerLandscape.kt index b250c8b..2751575 100644 --- a/app/src/main/java/com/acitelight/aether/view/VideoPlayerLandscape.kt +++ b/app/src/main/java/com/acitelight/aether/view/VideoPlayerLandscape.kt @@ -107,7 +107,7 @@ fun VideoPlayerLandscape(videoPlayerViewModel: VideoPlayerViewModel) { detectDragGestures( onDragStart = { offset -> if (videoPlayerViewModel.locked) return@detectDragGestures - if(offset.y > size.height * 0.8 || offset.y < size.height * 0.2) + if(offset.y > size.height * 0.9 || offset.y < size.height * 0.1) videoPlayerViewModel.draggingPurpose = -3 // Set gesture protection for the bottom of the screen // (Prevent conflicts with system gestures, such as dropdown status bar, bottom swipe up menu)