reapack

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

commit 3edc5647704bece876cdb51d35165254f354ef40
parent f16a955855c83b063cdf5eab60c869e3df8b6c0c
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Tue, 19 Jan 2016 20:12:48 -0800

give focus to the progress dialog when hitchhiking a transaction

Diffstat:
Msrc/reapack.cpp | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/reapack.cpp b/src/reapack.cpp @@ -214,8 +214,10 @@ void ReaPack::manageRemotes() Transaction *ReaPack::createTransaction() { - if(m_transaction) + if(m_transaction) { + m_progress->setFocus(); return nullptr; + } try { m_transaction = new Transaction(m_resourcePath);