Skip to content

Commit

Permalink
Fix bug where search menu would not move forward with down arrow key.
Browse files Browse the repository at this point in the history
  • Loading branch information
milkdropper committed Jan 8, 2021
1 parent e60f48b commit e6bd142
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/libprojectM/projectM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -929,6 +929,7 @@ void projectM::selectNext(const bool hardCut) {
}
else {
// otherwise move forward
renderer->m_activePresetID++;
selectPresetByName(renderer->m_presetList[renderer->m_activePresetID].name,true);
}
} else if (settings().shuffleEnabled && presetFuture.size() >= 1 && static_cast<std::size_t>(presetFuture.front()) != m_presetLoader->size() && !renderer->showmenu) { // if shuffling and we have future presets already stashed then let's go forward rather than truely move randomly.
Expand Down

0 comments on commit e6bd142

Please sign in to comment.