1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Remove the "Open Editor" button, it will open automatically.

This commit is contained in:
Juan Linietsky
2019-03-04 16:44:39 -03:00
parent d1ba3227c4
commit 472c94ce3e
5 changed files with 55 additions and 22 deletions

View File

@@ -1460,7 +1460,7 @@ void EditorNode::edit_item(Object *p_object) {
_set_editing_top_editors(p_object);
_display_top_editors(true);
} else {
_hide_top_editors();
hide_top_editors();
}
}
@@ -1498,7 +1498,7 @@ void EditorNode::_save_default_environment() {
}
}
void EditorNode::_hide_top_editors() {
void EditorNode::hide_top_editors() {
_display_top_editors(false);
@@ -1675,7 +1675,7 @@ void EditorNode::_edit_current() {
} else if (!editor_plugins_over->get_plugins_list().empty()) {
_hide_top_editors();
hide_top_editors();
}
}