diff options
| author | Méven Car <[email protected]> | 2020-05-30 13:54:44 +0200 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2020-05-30 15:01:56 +0200 |
| commit | 8aa7cde289d8e432016c9961527a7daa077c7389 (patch) | |
| tree | 235cafd09f090186365ce96911d02758813326a8 /src/views | |
| parent | b65576a131eb59eaab4d33af830bdb2d2f9fde9f (diff) | |
Prevents showing StatJob Progress info
BUG: 422121
Was introduced in ac234a9c55aed509b385ef03835a6d0f563e6a22
Diffstat (limited to 'src/views')
| -rw-r--r-- | src/views/dolphinview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index 02210baf4..fc036bce2 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -1523,7 +1523,7 @@ void DolphinView::calculateItemCount(int& fileCount, bool countFileSize = true; // In case we have a precomputed value - const auto job = KIO::statDetails(m_model->rootItem().url(), KIO::StatJob::SourceSide, KIO::StatRecursiveSize); + const auto job = KIO::statDetails(m_model->rootItem().url(), KIO::StatJob::SourceSide, KIO::StatRecursiveSize, KIO::HideProgressInfo); job->exec(); const auto entry = job->statResult(); if (entry.contains(KIO::UDSEntry::UDS_RECURSIVE_SIZE)) { |
