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

FileManager: Make the "open parent directory" action actually open ".."

This commit is contained in:
Andreas Kling 2019-03-02 09:16:57 +01:00
parent e11c7a5df5
commit 5c0fca0a95
3 changed files with 21 additions and 18 deletions

View file

@ -11,6 +11,7 @@ public:
void open(const String& path);
String path() const { return model().path(); }
void open_parent_directory();
Function<void(const String&)> on_path_change;
Function<void(String)> on_status_message;