┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2020-05-30 13:54:44 +0200
committerMéven Car <[email protected]>2020-05-30 15:01:56 +0200
commit8aa7cde289d8e432016c9961527a7daa077c7389 (patch)
tree235cafd09f090186365ce96911d02758813326a8 /src/views
parentb65576a131eb59eaab4d33af830bdb2d2f9fde9f (diff)
Prevents showing StatJob Progress info
BUG: 422121 Was introduced in ac234a9c55aed509b385ef03835a6d0f563e6a22
Diffstat (limited to 'src/views')
-rw-r--r--src/views/dolphinview.cpp2
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)) {