commit 535cdcbbc26141cf3a8f1bd926938ef1b036ea1b
parent 81465ceefb02af22a8041dc0ec4e1eeb086f431d
Author: cfillion <cfillion@users.noreply.github.com>
Date: Fri, 1 Apr 2016 18:51:37 -0400
fix enabling remotes from the import and about dialogs
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/reapack.cpp b/src/reapack.cpp
@@ -260,6 +260,8 @@ void ReaPack::import(const Remote &remote)
}
else {
enable(existing);
+ runTasks();
+
m_config->write();
return;
@@ -316,6 +318,8 @@ void ReaPack::about(const Remote &remote, HWND parent)
if(m_transaction) // transaction is created by enable()
m_transaction->synchronize(remote, true);
+
+ runTasks();
}
}, parent);
}