summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-01-15 00:48:43 +0100
committerCarl Hetherington <cth@carlh.net>2024-01-15 00:48:43 +0100
commit7a301e22de2a3c47a81ebc4c9f19b68131b482aa (patch)
treed8e3c44fff40eb7a4c6777c2f23c2b84fdacad45 /src
parent23f2862929cc21c32c4a7ceb4bbdca0aafcb9454 (diff)
Increase timeout before pulsing the progress bar for a job.
Diffstat (limited to 'src')
-rw-r--r--src/wx/job_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/job_view.cc b/src/wx/job_view.cc
index b98555e8a..41a1af012 100644
--- a/src/wx/job_view.cc
+++ b/src/wx/job_view.cc
@@ -107,7 +107,7 @@ JobView::maybe_pulse ()
{
if (_gauge && _job->running()) {
auto elapsed = _job->seconds_since_last_progress_update();
- if (!_job->progress() || !elapsed || *elapsed > 2) {
+ if (!_job->progress() || !elapsed || *elapsed > 4) {
_gauge->Pulse ();
}
}