diff options
author | Stefano Karapetsas <[email protected]> | 2014-01-27 16:23:13 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-01-27 16:23:13 +0100 |
commit | 7fbadf79122f06e80dd52937bfec8dea36cc2581 (patch) | |
tree | 8c974568176e1644df7416b67a41b44c348ee2f7 /libcaja-private/caja-file-operations.c | |
parent | d21e8d13f08a3c6cc89bec5e49ee4f76749ac89a (diff) | |
download | caja-7fbadf79122f06e80dd52937bfec8dea36cc2581.tar.bz2 caja-7fbadf79122f06e80dd52937bfec8dea36cc2581.tar.xz |
Add option to show file sizes with IEC units instead of SI units
Contains also a typo fix for the previous commit
Closes #203
https://github.com/mate-desktop/caja/issues/203
Diffstat (limited to 'libcaja-private/caja-file-operations.c')
-rw-r--r-- | libcaja-private/caja-file-operations.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libcaja-private/caja-file-operations.c b/libcaja-private/caja-file-operations.c index 99fbe89f..04ee81ab 100644 --- a/libcaja-private/caja-file-operations.c +++ b/libcaja-private/caja-file-operations.c @@ -852,7 +852,10 @@ custom_size_to_string (char *format, va_list va) size = va_arg (va, goffset); #if GLIB_CHECK_VERSION(2, 30, 0) - return g_format_size(size); + if (g_settings_get_boolean (caja_preferences, CAJA_PREFERENCES_USE_IEC_UNITS)) + return g_format_size_full (size, G_FORMAT_SIZE_IEC_UNITS); + else + return g_format_size(size); #else return g_format_size_for_display(size); #endif |