diff options
Diffstat (limited to 'src/UpdateGUI.cpp')
-rw-r--r-- | src/UpdateGUI.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/UpdateGUI.cpp b/src/UpdateGUI.cpp index 60d0c92..6176350 100644 --- a/src/UpdateGUI.cpp +++ b/src/UpdateGUI.cpp @@ -353,7 +353,9 @@ void UpdateGUIFrame::OnThread(wxCommandEvent& event) printAllJobsDone = true; } jobs->resetTotalJobsDone(); - } else SetStatusText(wxs); + } else { + SetStatusText(wxs + wxString::Format(wxT(" (jobs remaining: %u)"), jobs->Stacksize() + jobs->getBusyWorker())); + } break; case Job::eID_THREAD_JOB: SetStatusText(wxs); break; case Job::eID_THREAD_MSGOK: SetStatusText(wxs); tp = RTL_GREEN; break; |