You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Added pure vector theme, with dark icons variation
This commit is contained in:
@@ -336,7 +336,7 @@ void EditorNode::_notification(int p_what) {
|
||||
if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) {
|
||||
scene_tabs->set_tab_close_display_policy((bool(EDITOR_DEF("interface/always_show_close_button_in_scene_tabs", false)) ? Tabs::CLOSE_BUTTON_SHOW_ALWAYS : Tabs::CLOSE_BUTTON_SHOW_ACTIVE_ONLY));
|
||||
property_editor->set_enable_capitalize_paths(bool(EDITOR_DEF("interface/capitalize_properties", true)));
|
||||
Ref<Theme> theme = create_editor_theme();
|
||||
Ref<Theme> theme = create_editor_theme(theme_base->get_theme());
|
||||
theme_base->set_theme(theme);
|
||||
gui_base->add_style_override("panel", gui_base->get_stylebox("Background", "EditorStyles"));
|
||||
play_button_panel->add_style_override("panel", gui_base->get_stylebox("PlayButtonPanel", "EditorStyles"));
|
||||
@@ -5242,7 +5242,7 @@ EditorNode::EditorNode() {
|
||||
main_vbox = memnew(VBoxContainer);
|
||||
gui_base->add_child(main_vbox);
|
||||
main_vbox->set_area_as_parent_rect(8);
|
||||
main_vbox->set_margin(MARGIN_TOP, 5);
|
||||
main_vbox->set_margin(MARGIN_TOP, 5 * EDSCALE);
|
||||
|
||||
menu_hb = memnew(HBoxContainer);
|
||||
main_vbox->add_child(menu_hb);
|
||||
|
||||
Reference in New Issue
Block a user