diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-31 01:11:05 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-31 01:35:08 +0200 |
commit | 887ab3cc9a8477a383768cad1e5903f8404386ce (patch) | |
tree | 7ff21706b4713c42097993f44aa9cdb10f5d04e5 /Userland/Applications | |
parent | 34f186e1e6cb3394ba8e2d732966a01c0f221fd5 (diff) | |
download | serenity-887ab3cc9a8477a383768cad1e5903f8404386ce.zip |
LibGUI: Rename FileSystemModel's "Owner" column to "User"
A file is owned by a User+Group, not an Owner+Group.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/FileManager/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/FileManager/main.cpp b/Userland/Applications/FileManager/main.cpp index 73e6c34f20..fcf22ab89f 100644 --- a/Userland/Applications/FileManager/main.cpp +++ b/Userland/Applications/FileManager/main.cpp @@ -486,7 +486,7 @@ int run_in_windowed_mode(String initial_location, String entry_focused_on_init) tree_view.set_model(directories_model); tree_view.set_column_visible(GUI::FileSystemModel::Column::Icon, false); tree_view.set_column_visible(GUI::FileSystemModel::Column::Size, false); - tree_view.set_column_visible(GUI::FileSystemModel::Column::Owner, false); + tree_view.set_column_visible(GUI::FileSystemModel::Column::User, false); tree_view.set_column_visible(GUI::FileSystemModel::Column::Group, false); tree_view.set_column_visible(GUI::FileSystemModel::Column::Permissions, false); tree_view.set_column_visible(GUI::FileSystemModel::Column::ModificationTime, false); |