diff options
Diffstat (limited to '')
-rw-r--r-- | heimdall-frontend/Source/mainwindow.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/heimdall-frontend/Source/mainwindow.cpp b/heimdall-frontend/Source/mainwindow.cpp index 621ac38..f990cdd 100644 --- a/heimdall-frontend/Source/mainwindow.cpp +++ b/heimdall-frontend/Source/mainwindow.cpp @@ -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);
}
|