[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.
This commit is contained in:
Adriaan de Groot 2021-04-19 15:47:55 +02:00
parent 788c84dc41
commit 117418fe60

View File

@ -264,7 +264,8 @@ FillGlobalStorageJob::prettyDescription() const
"<strong>%2</strong>%4." ) "<strong>%2</strong>%4." )
.arg( path ) .arg( path )
.arg( mountPoint ) .arg( mountPoint )
.arg( fsType ) ); .arg( fsType )
.arg( QString() );
} }
} }
} }