Skip to content

Commit

Permalink
fix(ui): show correct number of docsets being installed
Browse files Browse the repository at this point in the history
  • Loading branch information
trollixx committed Sep 17, 2023
1 parent 4e5e58b commit e977deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ui/docsetsdialog.cpp
Expand Up @@ -813,7 +813,7 @@ void DocsetsDialog::updateStatus()
}

if (!m_tmpFiles.isEmpty()) {
text += QLatin1String(" ") + tr("Installing: %n.", nullptr, m_replies.size());
text += QLatin1String(" ") + tr("Installing: %n.", nullptr, m_tmpFiles.size());
}

ui->statusLabel->setText(text);
Expand Down

0 comments on commit e977deb

Please sign in to comment.