From d2b8d4316172fa74d877c40bf6072a16920d4054 Mon Sep 17 00:00:00 2001 From: Michael Carpenter Date: Tue, 5 Aug 2014 06:23:38 -0400 Subject: [PATCH] Interrogation: Fix for interrogate progress reaching over 100% when tasks failed --- core/src/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/mainwindow.cpp b/core/src/mainwindow.cpp index 2f26041..4b753ac 100644 --- a/core/src/mainwindow.cpp +++ b/core/src/mainwindow.cpp @@ -1890,7 +1890,8 @@ void MainWindow::commandFailed(int sequencenumber,unsigned short errornum) } else { - if (progressView) progressView->taskFail(sequencenumber); + //interrogateTaskFail(int) catches this case. + //if (progressView) progressView->taskFail(sequencenumber); } }