1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 16:35:07 +00:00

FileManager: Add ability to create new directories.

This commit is contained in:
Andreas Kling 2019-03-20 22:31:21 +01:00
parent 1030e6b848
commit be4533717a
7 changed files with 32 additions and 8 deletions

View file

@ -42,3 +42,8 @@ void DirectoryTableView::open_parent_directory()
{
model().open(String::format("%s/..", model().path().characters()));
}
void DirectoryTableView::refresh()
{
model().update();
}