Skip to content

Commit

Permalink
Add shortcut for opening the menu
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejGolian committed Aug 6, 2024
1 parent 466dd96 commit 30160fa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- Added ability to cycle through snapshots in the plug-in version of Kontakt
- Added shortcut for opening the tray menu with ctrl+shift+windows+r

### Changed

- Changed how Kontakt header buttons are activated
- Changed shortcut for viewing readme to ctrl+shift+windows+f1

### Fixed

- Fixed Kontakt header buttons not activating
- Fixed Kontakt library browser not always closing

## [0.4.6] - 2024-08-03
Expand Down
16 changes: 10 additions & 6 deletions Includes/Global.Hotkeys.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ Ctrl:: {
AccessibilityOverlay.StopSpeech()
}

^+#R:: {
A_TrayMenu.Show()
}

^+#Q:: {
AccessibilityOverlay.Speak("Quitting ReaHotkey")
ReaHotkey.Quit()
}

^+#F5:: {
ReaHotkey.Reload()
}
Expand All @@ -27,12 +36,7 @@ Ctrl:: {
AccessibilityOverlay.Speak("ReaHotkey ready")
}

^+#Q:: {
AccessibilityOverlay.Speak("Quitting ReaHotkey")
ReaHotkey.Quit()
}

^+#R:: {
^+#F1:: {
ReaHotkey.ViewReadme()
}

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ Our changelog can be found [in our dedicated changelog file](https://github.com/
* ctrl+shift+windows+c - configuration
* ctrl+shift+windows+p - pause
* ctrl+shift+windows+q - quit
* ctrl+shift+windows+r - view readme
* ctrl+shift+windows+r - open ReaHotkey menu
* ctrl+shift+windows+f1 - view readme
* ctrl+shift+windows+f5 - reload

## Known Issues
Expand Down

0 comments on commit 30160fa

Please sign in to comment.