From c6b45340ba0823d4a179066539bc2f31b7508291 Mon Sep 17 00:00:00 2001 From: tapframe <85391825+tapframe@users.noreply.github.com> Date: Tue, 27 Jan 2026 15:57:00 +0530 Subject: [PATCH] Buffer Indicator behaviour fix while controls are hidden --- src/components/player/AndroidVideoPlayer.tsx | 2 +- src/components/player/KSPlayerCore.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/player/AndroidVideoPlayer.tsx b/src/components/player/AndroidVideoPlayer.tsx index f260021c3..8312fb741 100644 --- a/src/components/player/AndroidVideoPlayer.tsx +++ b/src/components/player/AndroidVideoPlayer.tsx @@ -883,7 +883,7 @@ const AndroidVideoPlayer: React.FC = () => { {/* Buffering Indicator (Visible when controls are hidden) */} {playerState.isBuffering && !playerState.showControls && ( - + )} diff --git a/src/components/player/KSPlayerCore.tsx b/src/components/player/KSPlayerCore.tsx index 60a4658ed..a607a1e91 100644 --- a/src/components/player/KSPlayerCore.tsx +++ b/src/components/player/KSPlayerCore.tsx @@ -825,7 +825,7 @@ const KSPlayerCore: React.FC = () => { {/* Buffering Indicator (Visible when controls are hidden) */} {isBuffering && !showControls && ( - + )}