summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dlg-prop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dlg-prop.c b/src/dlg-prop.c
index 18ceb1d..0c63dd4 100644
--- a/src/dlg-prop.c
+++ b/src/dlg-prop.c
@@ -157,7 +157,7 @@ dlg_prop (FrWindow *window)
label = _gtk_builder_get_widget (data->builder, "p_size_label");
size = get_file_size (fr_window_get_archive_uri (window));
- s = g_format_size (size);
+ s = g_format_size_full (size, G_FORMAT_SIZE_LONG_FORMAT);
gtk_label_set_text (GTK_LABEL (label), s);
g_free (s);
@@ -177,7 +177,7 @@ dlg_prop (FrWindow *window)
}
label = _gtk_builder_get_widget (data->builder, "p_uncomp_size_label");
- s = g_format_size (uncompressed_size);
+ s = g_format_size_full (uncompressed_size, G_FORMAT_SIZE_LONG_FORMAT);
gtk_label_set_text (GTK_LABEL (label), s);
g_free (s);