diff --git a/kerfuffle/jobs.cpp b/kerfuffle/jobs.cpp --- a/kerfuffle/jobs.cpp +++ b/kerfuffle/jobs.cpp @@ -481,6 +481,9 @@ connect(m_addJob, &KJob::description, this, [=](KJob *, const QString &title, const QPair &field1, const QPair &) { emit description(this, title, field1); }); + connect(m_addJob, QOverload::of(&KJob::percent), this, [=](KJob*, unsigned long percent) { + emitPercent(percent, 100); + }); m_addJob->start(); } else {