From 117418fe6024b6693e6489083f9071835731f3f4 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 19 Apr 2021 15:47:55 +0200 Subject: [PATCH] [partition] Fix partitioning summary - the %4 is left-over from the feature-summary string, - replace it with ""; don't change the source string because that will break translations right now. --- src/modules/partition/jobs/FillGlobalStorageJob.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/partition/jobs/FillGlobalStorageJob.cpp b/src/modules/partition/jobs/FillGlobalStorageJob.cpp index f79918e64..7f76f20d7 100644 --- a/src/modules/partition/jobs/FillGlobalStorageJob.cpp +++ b/src/modules/partition/jobs/FillGlobalStorageJob.cpp @@ -264,7 +264,8 @@ FillGlobalStorageJob::prettyDescription() const "%2%4." ) .arg( path ) .arg( mountPoint ) - .arg( fsType ) ); + .arg( fsType ) + .arg( QString() ); } } }