From 7e9f62dc7ff3b0b8d14592d0351f57e3f828c198 Mon Sep 17 00:00:00 2001 From: Sam <37251808+PsychotherapistSam@users.noreply.github.com> Date: Sun, 17 May 2026 21:14:00 +0200 Subject: [PATCH] fix(player): adjust performance overlay padding --- lib/widgets/video_controls/video_controls.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/video_controls/video_controls.dart b/lib/widgets/video_controls/video_controls.dart index adba3f07..5a899d46 100644 --- a/lib/widgets/video_controls/video_controls.dart +++ b/lib/widgets/video_controls/video_controls.dart @@ -809,7 +809,7 @@ class _PlexVideoControlsState extends State AnimatedPositioned( duration: const Duration(milliseconds: 200), curve: Curves.easeInOut, - top: _showControls && isMobile ? 80.0 : 16.0, + top: _showControls ? (isMobile ? 100.0 : 60.0) : 16.0, left: 16, child: AnimatedOpacity( opacity: (!_autoHidePerformanceOverlay || _showControls || _forceShowControls) ? 1.0 : 0.0,