<table><tr><td style="">antonanikin updated the test plan for this revision. <a href="https://phabricator.kde.org/transactions/detail/PHID-XACT-DREV-366zqs4e4yawzcn/" rel="noreferrer">(Show Details)</a>
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D3107" rel="noreferrer">View Revision</a></tr></table><br /><div><strong>EDIT DETAILS</strong><div><div style="white-space: pre-wrap; color: #74777D;"><span style="padding: 0 2px; color: #3e6d35; background: rgba(151, 234, 151, .6);">Tested on master branch.<br />
<br />
Code to reproduce bug:<br />
```<br />
class TestJob : public KJob<br />
{<br />
    Q_OBJECT<br />
<br />
public:<br />
    TestJob(int stepTime, int totalTime)<br />
        : KJob(nullptr)<br />
        , m_percent(0.0)<br />
        , m_percentStep(100.0 / totalTime * stepTime )<br />
        , m_stepTime(stepTime)<br />
    {<br />
        m_timer.setSingleShot(false);<br />
        connect(&m_timer, &QTimer::timeout, this, &TestJob::timerSlot);<br />
    }<br />
<br />
    void start() override<br />
    {<br />
        m_timer.start(m_stepTime);<br />
    }<br />
<br />
private:<br />
    double m_percent;<br />
    double m_percentStep;<br />
<br />
    QTimer m_timer;<br />
    int m_stepTime;<br />
<br />
    void timerSlot()<br />
    {<br />
        m_percent += m_percentStep;<br />
        if (m_percent >= 100.0)<br />
            m_percent = 100.0;<br />
<br />
        setPercent((unsigned long)m_percent);<br />
        if (m_percent == 100.0) {<br />
            emitResult();<br />
            deleteLater();<br />
        }<br />
    }<br />
};<br />
<br />
void runTest()<br />
{<br />
    TestJob* testJob = new TestJob(1000, 5000);<br />
    core()->uiController()->registerStatus(new KDevelop::JobStatus(testJob, "testJob"));<br />
    testJob->start();<br />
}<br />
```<br />
If the value of first parameter of `TestJob` contructor is less than 1000 - we don't see any status.</span></div></div></div><br /><div><strong>REPOSITORY</strong><div><div>rKDEVPLATFORM KDevPlatform</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D3107" rel="noreferrer">https://phabricator.kde.org/D3107</a></div></div><br /><div><strong>EMAIL PREFERENCES</strong><div><a href="https://phabricator.kde.org/settings/panel/emailpreferences/" rel="noreferrer">https://phabricator.kde.org/settings/panel/emailpreferences/</a></div></div><br /><div><strong>To: </strong>antonanikin, KDevelop<br /><strong>Cc: </strong>kdevelop-devel<br /></div>