From 8aa7cde289d8e432016c9961527a7daa077c7389 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A9ven=20Car?= Date: Sat, 30 May 2020 13:54:44 +0200 Subject: [PATCH] Prevents showing StatJob Progress info BUG: 422121 Was introduced in ac234a9c55aed509b385ef03835a6d0f563e6a22 --- src/views/dolphinview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 2.47.3