From 43494c822e7225dfd16edcf9b7247d47586cdf60 Mon Sep 17 00:00:00 2001 From: edde746 <86283021+edde746@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:19:10 +0100 Subject: [PATCH] fix: pause button focus on Android TV --- lib/widgets/video_controls/video_controls.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/video_controls/video_controls.dart b/lib/widgets/video_controls/video_controls.dart index b9048514..d68fa67e 100644 --- a/lib/widgets/video_controls/video_controls.dart +++ b/lib/widgets/video_controls/video_controls.dart @@ -235,10 +235,10 @@ class _PlexVideoControlsState extends State with WindowListen } } - /// Focus play/pause button if we're in keyboard navigation mode (desktop only) + /// Focus play/pause button if we're in keyboard navigation mode (desktop/TV only) void _focusPlayPauseIfKeyboardMode() { if (!mounted) return; - final isMobile = PlatformDetector.isMobile(context); + final isMobile = PlatformDetector.isMobile(context) && !PlatformDetector.isTV(); if (!isMobile && InputModeTracker.isKeyboardMode(context)) { _desktopControlsKey.currentState?.requestPlayPauseFocus(); }