From 11f81c59e5016a383096dc3682c0a9c4416553bc Mon Sep 17 00:00:00 2001 From: casey langen Date: Sun, 18 Jul 2021 13:10:06 -0700 Subject: [PATCH] Fix bug where user may not be able to navigate to lyrics layout. --- src/musikcube/app/layout/MainLayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/musikcube/app/layout/MainLayout.cpp b/src/musikcube/app/layout/MainLayout.cpp index c6189b46d..fbbb66117 100755 --- a/src/musikcube/app/layout/MainLayout.cpp +++ b/src/musikcube/app/layout/MainLayout.cpp @@ -181,7 +181,7 @@ bool MainLayout::KeyPress(const std::string& key) { this->SetLayout(consoleLayout); return true; } - else if (auddio::Available() && Hotkeys::Is(Hotkeys::NavigateLyrics, key)) { + else if (Hotkeys::Is(Hotkeys::NavigateLyrics, key)) { this->Broadcast(message::JumpToLyrics); return true; }