1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-21 14:57:09 +00:00

-Cleaned up find/replace bar for replace (made selection only default if selection exists), also made buttons look like buttons

-Fixed a bug related to theme propagation, may be able to solve #6443, #6302 and others. Please test.
This commit is contained in:
Juan Linietsky
2016-09-11 10:01:52 -03:00
parent e6ef92d217
commit 1bf684cea2
9 changed files with 47 additions and 31 deletions

View File

@@ -5419,9 +5419,9 @@ EditorNode::EditorNode() {
theme_base->add_child(gui_base);
gui_base->set_area_as_parent_rect();
theme_base->set_theme( create_default_theme() );
theme = create_editor_theme();
gui_base->set_theme(theme);
Ref<Theme> theme = create_editor_theme();
theme_base->set_theme( theme );
gui_base->set_theme(create_custom_theme());
resource_preview = memnew( EditorResourcePreview );
add_child(resource_preview);