Repaired shuffle global hotkey in Windows.

This commit is contained in:
casey 2016-06-25 19:22:14 -07:00
parent 8e49e4ed7c
commit c32a71af93

View File

@ -86,7 +86,7 @@ bool GlobalHotkeys::Handle(const std::string& kn) {
playback::ToggleRepeatMode(this->playback);
return true;
}
else if (kn == "M-." || kn == "M-period") {
else if (kn == "M-." || kn == "M-stop") {
this->playback.ToggleShuffle();
return true;
}