Skip to content
This repository has been archived by the owner on Sep 27, 2020. It is now read-only.

Commit

Permalink
Do not continue polling for connectivity during installation
Browse files Browse the repository at this point in the history
Fixes bug in which the installation progress window is hidden if:

1) there is no functional network connectivity at startup
2) the user decides to install a local image stored on SD card
3) during installation a DHCP lease is obtained after all
  • Loading branch information
maxnet committed Dec 7, 2016
1 parent b68ad6e commit d709621
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recovery/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,8 @@ void MainWindow::on_actionWrite_image_to_disk_triggered()
{
setEnabled(false);
_numMetaFilesToDownload = 0;
if (_networkStatusPollTimer.isActive())
_networkStatusPollTimer.stop();

QList<QListWidgetItem *> selected = selectedItems();
foreach (QListWidgetItem *item, selected)
Expand Down

0 comments on commit d709621

Please sign in to comment.