Merge pull request #26496 from MadEqua/fix-filesystem-dock-icon

Fix grid view button icon not showing on filesystem dock.
This commit is contained in:
Rémi Verschelde 2019-03-03 19:58:48 +01:00 committed by GitHub
commit 9357d691a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -5659,7 +5659,6 @@ EditorNode::EditorNode() {
filesystem_dock = memnew(FileSystemDock(this));
filesystem_dock->connect("open", this, "open_request");
filesystem_dock->set_file_list_display_mode(FileSystemDock::FILE_LIST_DISPLAY_LIST);
filesystem_dock->connect("instance", this, "_instance_request");
filesystem_dock->connect("display_mode_changed", this, "_save_docks");

View file

@ -302,6 +302,8 @@ void FileSystemDock::_notification(int p_what) {
always_show_folders = bool(EditorSettings::get_singleton()->get("docks/filesystem/always_show_folders"));
set_file_list_display_mode(FileSystemDock::FILE_LIST_DISPLAY_LIST);
_update_display_mode();
if (EditorFileSystem::get_singleton()->is_scanning()) {