1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 23:45:10 +00:00

GFileSystemModel: Don't reload icons every time they are requested.

This was really slugging up the interactive resizing. :^)
This commit is contained in:
Andreas Kling 2019-03-30 04:20:28 +01:00
parent 73f3e05ebb
commit 6ab55801e2
2 changed files with 10 additions and 3 deletions

View file

@ -33,4 +33,8 @@ private:
struct Node;
Node* m_root { nullptr };
GIcon m_open_folder_icon;
GIcon m_closed_folder_icon;
GIcon m_file_icon;
};