diff --git a/Userland/Applications/FileManager/PropertiesWindow.cpp b/Userland/Applications/FileManager/PropertiesWindow.cpp index e59f278d99..97ec4203c2 100644 --- a/Userland/Applications/FileManager/PropertiesWindow.cpp +++ b/Userland/Applications/FileManager/PropertiesWindow.cpp @@ -26,6 +26,7 @@ #include "PropertiesWindow.h" #include +#include #include #include #include @@ -128,7 +129,7 @@ PropertiesWindow::PropertiesWindow(const String& path, bool disable_rename, Wind } } - properties.append({ "Size:", String::formatted("{} bytes", st.st_size) }); + properties.append({ "Size:", human_readable_size_long(st.st_size) }); properties.append({ "Owner:", String::formatted("{} ({})", owner_name, st.st_uid) }); properties.append({ "Group:", String::formatted("{} ({})", group_name, st.st_gid) }); properties.append({ "Created at:", GUI::FileSystemModel::timestamp_string(st.st_ctime) });