diff --git a/README.md b/README.md index a162d5a67..373cfa3df 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,8 @@ you may also change hotkeys by editing `~/.mC2/hotkeys.json` and restarting the - `u` back 10 seconds - `o` forward 10 seconds - `r` repaint the screen -- `,` toggle repeat mode (off/track/list) -- `.` (un)shuffle play queue +- `.` toggle repeat mode (off/track/list) +- `,` (un)shuffle play queue - `CTRL+p` pause/resume (globally) - `CTRL+x` stop (unload streams, free resources) - `CTRL+d` quit diff --git a/src/musikbox/app/util/Hotkeys.cpp b/src/musikbox/app/util/Hotkeys.cpp index 0e6aa395b..9d5905a93 100755 --- a/src/musikbox/app/util/Hotkeys.cpp +++ b/src/musikbox/app/util/Hotkeys.cpp @@ -105,8 +105,8 @@ static std::unordered_map ID_TO_DEFAULT = { { Id::VolumeDown, "k" }, { Id::SeekForward, "o" }, { Id::SeekBack, "u" }, - { Id::ToggleRepeat, "," }, - { Id::ToggleShuffle, "." }, + { Id::ToggleRepeat, "." }, + { Id::ToggleShuffle, "," }, { Id::Stop, "^X" }, { Id::ViewRefresh, "KEY_F(5)" },