From fc0d542bc28b86b1fa3402ab6878c7dea450d0c6 Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Sun, 18 May 2014 03:05:46 +1000 Subject: Fixed Frontend bug that could cause flashing to fail. The resume boolean did not have a default value set. Consequently if the memory address containing the boolean was already non-null it resulted in the heimdall CLI binary being called with the --resume flag even though the Resume check-box in the UI was not checked. --- heimdall-frontend/Source/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/heimdall-frontend/Source/mainwindow.cpp b/heimdall-frontend/Source/mainwindow.cpp index 98f683e..f122034 100644 --- a/heimdall-frontend/Source/mainwindow.cpp +++ b/heimdall-frontend/Source/mainwindow.cpp @@ -419,6 +419,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) populatingPartitionNames = false; verboseOutput = false; + resume = false; tabIndex = functionTabWidget->currentIndex(); functionTabWidget->setTabEnabled(functionTabWidget->indexOf(createPackageTab), false); -- cgit v1.1