1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 09:05:08 +00:00

LibGUI: Add symlink targets as a column in GFileSystemModel

Also make sure to hide this column by default where we don't expect
to see it.
This commit is contained in:
Andreas Kling 2020-01-27 22:19:05 +01:00
parent fcb7f6f233
commit f7b394af7d
4 changed files with 23 additions and 0 deletions

View file

@ -53,6 +53,7 @@ public:
Permissions,
ModificationTime,
Inode,
SymlinkTarget,
__Count,
};
@ -60,6 +61,7 @@ public:
~Node() { close(m_watch_fd); }
String name;
String symlink_target;
size_t size { 0 };
mode_t mode { 0 };
uid_t uid { 0 };