1
0
Fork 0
forked from len0rd/rockbox

rbutil: Fix progress dialog abort changed too early.

Don't change the abort button to Ok after a successful bootloader
install, this will be done by the following steps.

Change-Id: I4275de1f44bddf0580b10b36240a36a43daa68d0
This commit is contained in:
Dominik Riebeling 2022-04-18 19:22:26 +02:00
parent 80ac6893c0
commit 3ed515872c

View file

@ -298,7 +298,6 @@ void SelectiveInstallWidget::installBootloader(void)
// the bootloader install class does NOT use any GUI stuff. // the bootloader install class does NOT use any GUI stuff.
// All messages are passed via signals. // All messages are passed via signals.
connect(bl, &BootloaderInstallBase::done, m_logger, &ProgressLoggerGui::setFinished);
connect(bl, &BootloaderInstallBase::done, this, &SelectiveInstallWidget::continueInstall); connect(bl, &BootloaderInstallBase::done, this, &SelectiveInstallWidget::continueInstall);
connect(bl, &BootloaderInstallBase::logItem, m_logger, &ProgressLoggerGui::addItem); connect(bl, &BootloaderInstallBase::logItem, m_logger, &ProgressLoggerGui::addItem);
connect(bl, &BootloaderInstallBase::logProgress, m_logger, &ProgressLoggerGui::setProgress); connect(bl, &BootloaderInstallBase::logProgress, m_logger, &ProgressLoggerGui::setProgress);