Pause/resume "fix" in LyricsLayout.cpp

This commit is contained in:
casey langen 2019-04-07 23:52:00 -07:00
parent bd543c0d84
commit f0a48f72ea

View File

@ -86,6 +86,10 @@ bool LyricsLayout::KeyPress(const std::string& kn) {
this->LoadLyricsForCurrentTrack();
return true;
}
else if (kn == " ") { /* ugh... need to generalize this maybe */
playback.PauseOrResume();
return true;
}
return LayoutBase::KeyPress(kn);
}