From b23a4885e075a551eabd5fc42ca45f98aa13f966 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 6 Oct 2013 14:12:25 +0200 Subject: - bugfix: When updating MO, if login is required, the process didn't continue automatically after login --- src/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 10985b0b..57201db9 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -4228,6 +4228,7 @@ void MainWindow::on_actionUpdate_triggered() (m_AskForNexusPW && queryLogin(username, password)))) { NexusInterface::instance()->getAccessManager()->login(username, password); m_LoginAttempted = true; + m_PostLoginTasks.push_back([&](MainWindow*) { m_Updater.startUpdate(); }); } else { m_Updater.startUpdate(); } -- cgit v1.3.1