1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Fix !icon_map.has(p_type) error

"ResizedFolder" "ResizedFile" icons are removed from 15904d6
This commit is contained in:
volzhs
2017-09-15 10:53:49 +09:00
parent 57516a4473
commit f1176e2a93

View File

@@ -107,8 +107,6 @@ void EditorFileDialog::_notification(int p_what) {
fav_down->set_icon(get_icon("MoveDown", "EditorIcons")); fav_down->set_icon(get_icon("MoveDown", "EditorIcons"));
fav_rm->set_icon(get_icon("RemoveSmall", "EditorIcons")); fav_rm->set_icon(get_icon("RemoveSmall", "EditorIcons"));
Theme::get_default()->clear_icon("ResizedFile", "EditorIcons");
Theme::get_default()->clear_icon("ResizedFolder", "EditorIcons");
update_file_list(); update_file_list();
} }
} }