From 2eb7eaa2a6a5d9ccfe7a0535858778dfb85997cb Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 18 Oct 2023 09:41:01 +1100 Subject: [PATCH] Go straight to the playback screen after 'play now' --- src/ui/modal_add_to_queue.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/modal_add_to_queue.cpp b/src/ui/modal_add_to_queue.cpp index b84d8571..cc3a8d51 100644 --- a/src/ui/modal_add_to_queue.cpp +++ b/src/ui/modal_add_to_queue.cpp @@ -103,6 +103,7 @@ AddToQueue::AddToQueue(Screen* host, } } events::Ui().Dispatch(internal::ModalCancelPressed{}); + events::Ui().Dispatch(internal::ShowNowPlaying{}); }); bool has_queue = queue.GetCurrent().has_value();