summaryrefslogtreecommitdiff
path: root/tools/editor/editor_data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/editor/editor_data.cpp')
-rw-r--r--tools/editor/editor_data.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/editor/editor_data.cpp b/tools/editor/editor_data.cpp
index 6c1fc2ef05..f78ab93c30 100644
--- a/tools/editor/editor_data.cpp
+++ b/tools/editor/editor_data.cpp
@@ -261,13 +261,13 @@ EditorPlugin* EditorData::get_subeditor(Object *p_object) {
}
EditorPlugin* EditorData::get_editor(String p_name) {
-
+
for(int i=0;i<editor_plugins.size();i++) {
-
+
if (editor_plugins[i]->get_name()==p_name)
return editor_plugins[i];
}
-
+
return NULL;
}