From dbd1cd3937745e48d375e6604bf779a6ac4ac0bc Mon Sep 17 00:00:00 2001 From: Adam Purkrt Date: Sat, 3 Feb 2018 11:48:44 +0100 Subject: [PATCH 3/3] Show also size in bytes in statusbar Bug: 11690 --- thunar/thunar-list-model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunar/thunar-list-model.c b/thunar/thunar-list-model.c index f2357f9e..a7876218 100644 --- a/thunar/thunar-list-model.c +++ b/thunar/thunar-list-model.c @@ -2377,7 +2377,7 @@ thunar_list_model_get_statusbar_text (ThunarListModel *store, else if (thunar_file_is_regular (file)) { description = g_content_type_get_description (content_type); - size_string = thunar_file_get_size_string_formatted (file, file_size_binary); + size_string = thunar_file_get_size_string_long (file, file_size_binary); /* I18N, first %s is the display name of the file, 2nd the file size, 3rd the content type */ text = g_strdup_printf (_("\"%s\" (%s) %s"), thunar_file_get_display_name (file), size_string, description); -- 2.16.1