diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-30 03:27:25 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-30 03:27:25 +0100 |
commit | 2c6a597d7767d38fc5c8e743dd57f13733c1287f (patch) | |
tree | 81a62b8d43b7f8be8b580bd82605e8cefebbfc8f /AK/FileSystemPath.cpp | |
parent | f10e0d054612eef415ce96a0e2383910d39668c0 (diff) | |
download | serenity-2c6a597d7767d38fc5c8e743dd57f13733c1287f.zip |
FileManager: Make the tree view follow the directory view navigations.
Diffstat (limited to 'AK/FileSystemPath.cpp')
-rw-r--r-- | AK/FileSystemPath.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AK/FileSystemPath.cpp b/AK/FileSystemPath.cpp index 2a3a556d27..971bbf52bd 100644 --- a/AK/FileSystemPath.cpp +++ b/AK/FileSystemPath.cpp @@ -40,6 +40,7 @@ bool FileSystemPath::canonicalize(bool resolve_symbolic_links) builder.append('/'); builder.append(cpart); } + m_parts = move(canonical_parts); m_string = builder.to_string(); return true; } |