From 4d34c977c85c2c05a4164ba19b7f718cb6c89bfd Mon Sep 17 00:00:00 2001 From: damontecres <154766448+damontecres@users.noreply.github.com> Date: Sun, 16 Nov 2025 21:24:07 -0500 Subject: [PATCH] Fix issue when holding down on playback overylay queue (#237) Fixes an issues where if the playback overlay is showing and there is a queue of items, then holding the D-Pad down button would scroll down but visually lose focus on the queue items. --- .../github/damontecres/wholphin/ui/playback/PlaybackOverlay.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/java/com/github/damontecres/wholphin/ui/playback/PlaybackOverlay.kt b/app/src/main/java/com/github/damontecres/wholphin/ui/playback/PlaybackOverlay.kt index 60abc1bc..02473287 100644 --- a/app/src/main/java/com/github/damontecres/wholphin/ui/playback/PlaybackOverlay.kt +++ b/app/src/main/java/com/github/damontecres/wholphin/ui/playback/PlaybackOverlay.kt @@ -291,6 +291,8 @@ fun PlaybackOverlay( state = OverlayViewState.CONTROLLER } true + } else if (isDown(e)) { + true } else { false }