LibGUI: Add missing call to did_update() when updating GFileSystemModel

This commit is contained in:
Tommy Nguyen
2019-12-12 11:07:10 -05:00
committed by Andreas Kling
parent 19d8c675f1
commit 2bd640277e

View File

@@ -160,6 +160,8 @@ void GFileSystemModel::update()
m_root = new Node;
m_root->name = m_root_path;
m_root->reify_if_needed(*this);
did_update();
}
void GFileSystemModel::cleanup()