1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

LibGUI: Rename FileSystemModel's "Owner" column to "User"

A file is owned by a User+Group, not an Owner+Group.
This commit is contained in:
Andreas Kling 2021-08-31 01:11:05 +02:00
parent 34f186e1e6
commit 887ab3cc9a
4 changed files with 8 additions and 8 deletions

View file

@ -97,7 +97,7 @@ FilePicker::FilePicker(Window* parent_window, Mode mode, const StringView& filen
m_view->set_model(SortingProxyModel::create(*m_model));
m_view->set_model_column(FileSystemModel::Column::Name);
m_view->set_key_column_and_sort_order(GUI::FileSystemModel::Column::Name, GUI::SortOrder::Ascending);
m_view->set_column_visible(FileSystemModel::Column::Owner, true);
m_view->set_column_visible(FileSystemModel::Column::User, true);
m_view->set_column_visible(FileSystemModel::Column::Group, true);
m_view->set_column_visible(FileSystemModel::Column::Permissions, true);
m_view->set_column_visible(FileSystemModel::Column::Inode, true);