aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2016-07-21 10:34:57 -0300
committerJuan Linietsky2016-07-21 10:34:57 -0300
commitff8f4cb40984884c722809fc0d440299570053b1 (patch)
tree4a33eaed6df7d717e2dbd9c5ac4df1e6db1375ad /tools/editor/editor_node.cpp
parente75bad41f777502b2fc05c9a8ccbb3f86c98b891 (diff)
downloadgodot-ff8f4cb40984884c722809fc0d440299570053b1.tar.gz
godot-ff8f4cb40984884c722809fc0d440299570053b1.tar.zst
godot-ff8f4cb40984884c722809fc0d440299570053b1.zip
Renamed scenes_dock to filesystem_dock (makes more sense, it has not been a scenes dock since a long time).
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r--tools/editor/editor_node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index d843b6ef6..3f93c0591 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -3822,7 +3822,7 @@ void EditorNode::request_instance_scene(const String &p_path) {
}
-ScenesDock *EditorNode::get_scenes_dock() {
+FileSystemDock *EditorNode::get_scenes_dock() {
return scenes_dock;
}
@@ -6162,7 +6162,7 @@ EditorNode::EditorNode() {
//node_dock->set_undoredo(&editor_data.get_undo_redo());
dock_slot[DOCK_SLOT_RIGHT_BL]->add_child(node_dock);
- scenes_dock = memnew( ScenesDock(this) );
+ scenes_dock = memnew( FileSystemDock(this) );
scenes_dock->set_name(TTR("FileSystem"));
scenes_dock->set_use_thumbnails(int(EditorSettings::get_singleton()->get("file_dialog/display_mode"))==EditorFileDialog::DISPLAY_THUMBNAILS);
dock_slot[DOCK_SLOT_LEFT_UR]->add_child(scenes_dock);