diff options
| author | Rémi Verschelde | 2017-09-12 20:19:59 +0200 |
|---|---|---|
| committer | GitHub | 2017-09-12 20:19:59 +0200 |
| commit | fe33ef5a1948af7c89a6d71de3580341cf2c0d6a (patch) | |
| tree | 6088272e7164f81b59f368c8635ad0756280dc91 /editor/editor_node.cpp | |
| parent | 647a9141558e0dd618e62b0563dca3363387e897 (diff) | |
| parent | 57fff67580981397420ab8be2b3121ca951f36b8 (diff) | |
| download | godot-fe33ef5a1948af7c89a6d71de3580341cf2c0d6a.tar.gz godot-fe33ef5a1948af7c89a6d71de3580341cf2c0d6a.tar.zst godot-fe33ef5a1948af7c89a6d71de3580341cf2c0d6a.zip | |
Merge pull request #11072 from djrm/pr_better_theme
Several visual improvements
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_node.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index b4412014e..240d3563a 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -4872,6 +4872,7 @@ EditorNode::EditorNode() { gui_base->add_child(dependency_fixer); settings_config_dialog = memnew(EditorSettingsDialog); + // settings_config_dialog->add_style_override("panel", gui_base->get_stylebox("EditorSettingsDialog", "EditorStyles")); gui_base->add_child(settings_config_dialog); project_settings = memnew(ProjectSettingsEditor(&editor_data)); @@ -5029,7 +5030,7 @@ EditorNode::EditorNode() { p->add_icon_item(gui_base->get_icon("Instance", "EditorIcons"), TTR("Issue Tracker"), HELP_ISSUES); p->add_icon_item(gui_base->get_icon("Instance", "EditorIcons"), TTR("Community"), HELP_COMMUNITY); p->add_separator(); - p->add_icon_item(gui_base->get_icon("GodotDocs", "EditorIcons"), TTR("About"), HELP_ABOUT); + p->add_icon_item(gui_base->get_icon("Godot", "EditorIcons"), TTR("About"), HELP_ABOUT); play_cc = memnew(CenterContainer); play_cc->set_mouse_filter(Control::MOUSE_FILTER_IGNORE); |
