reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit be1a2db3eb5990d3fed3609bb8e7da6e42eaa769
parent 0ee4a64659505b81065d38da22e9255894256a17
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Mon, 23 Oct 2017 00:38:46 -0400

browser: show about package window on spacebar

Diffstat:
Msrc/browser.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/browser.cpp b/src/browser.cpp @@ -218,6 +218,8 @@ bool Browser::onKeyDown(const int key, const int mods) copy(); else if(!mods && key == VK_F5) refresh(true); + else if(!mods && key == VK_SPACE) + aboutPackage(m_list->currentIndex()); else return false;