reapack

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

commit 75f89ba50adee3969476d41195f2951338add6ac
parent 53e1da615a2bddcbbc8dbf857cc682821ad58c5f
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Fri,  6 May 2016 20:12:29 -0400

browser: show 'R' status instead of 'U' for queued uninstallation

avoid confusion with 'u' for update available

Diffstat:
Msrc/browser.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/browser.cpp b/src/browser.cpp @@ -608,7 +608,7 @@ string Browser::getValue(const Column col, const Entry &entry) const display += '\x20'; if(entry.target) - display += *entry.target == nullptr ? 'U' : 'I'; + display += *entry.target == nullptr ? 'R' : 'I'; if(entry.pin && entry.canPin()) display += 'P';