Made Heimdall Frontend pass the --verbose parameter for all actions when 'Verbose Output' is checked.

alt_setting-error
Benjamin Dobell 2012-10-13 19:35:20 +11:00
parent 648bfb1bb7
commit 7a8f81347b
1 changed files with 12 additions and 0 deletions

View File

@ -1078,6 +1078,9 @@ void MainWindow::DetectDevice(void)
QStringList arguments;
arguments.append("detect");
if (verboseOutput)
arguments.append("--verbose");
arguments.append("--stdout-errors");
StartHeimdall(arguments);
@ -1093,6 +1096,9 @@ void MainWindow::ClosePcScreen(void)
QStringList arguments;
arguments.append("close-pc-screen");
if (verboseOutput)
arguments.append("--verbose");
arguments.append("--stdout-errors");
StartHeimdall(arguments);
@ -1129,6 +1135,9 @@ void MainWindow::DownloadPit(void)
arguments.append("--no-reboot");
if (verboseOutput)
arguments.append("--verbose");
arguments.append("--stdout-errors");
StartHeimdall(arguments);
@ -1188,6 +1197,9 @@ void MainWindow::PrintPit(void)
arguments.append("--stdout-errors");
arguments.append("--no-reboot");
if (verboseOutput)
arguments.append("--verbose");
StartHeimdall(arguments);
}