diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-05-12 00:21:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 00:21:37 -0700 |
commit | b16829b0f9a24dba9d4c9582f82affb30a416f1b (patch) | |
tree | b261ced954e5cccc7dd0f27d880689174a692d3b /launcher | |
parent | 30cf73a22f1d185da15944857bed135d9e588267 (diff) | |
download | PrismLauncher-b16829b0f9a24dba9d4c9582f82affb30a416f1b.tar.gz PrismLauncher-b16829b0f9a24dba9d4c9582f82affb30a416f1b.tar.bz2 PrismLauncher-b16829b0f9a24dba9d4c9582f82affb30a416f1b.zip |
Gib -> GiB
Co-authored-by: Sefa Eyeoglu <contact@scrumplex.net>
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/StringUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/StringUtils.cpp b/launcher/StringUtils.cpp index 84820eb0..e08e6fdc 100644 --- a/launcher/StringUtils.cpp +++ b/launcher/StringUtils.cpp @@ -160,7 +160,7 @@ QString StringUtils::truncateUrlHumanFriendly(QUrl& url, int max_len, bool hard_ } static const QStringList s_units_si{ "KB", "MB", "GB", "TB" }; -static const QStringList s_units_kibi{ "KiB", "MiB", "Gib", "TiB" }; +static const QStringList s_units_kibi{ "KiB", "MiB", "GiB", "TiB" }; QString StringUtils::humanReadableFileSize(double bytes, bool use_si, int decimal_points) { |