You've already forked godot
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user