Fix bug where user may not be able to navigate to lyrics layout.

This commit is contained in:
casey langen 2021-07-18 13:10:06 -07:00
parent 8627875691
commit 11f81c59e5

View File

@ -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;
}