Browse Source

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

Tommy Nguyen 5 years ago
parent
commit
2bd640277e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Libraries/LibGUI/GFileSystemModel.cpp

+ 2 - 0
Libraries/LibGUI/GFileSystemModel.cpp

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