diff options
| author | Rémi Verschelde | 2017-12-08 08:26:32 +0100 |
|---|---|---|
| committer | GitHub | 2017-12-08 08:26:32 +0100 |
| commit | 28b317966f01cda96567e9eb0caef3be73c5f021 (patch) | |
| tree | 1d43fef0202c0217dea0033a9e3939d91a7b0bf8 | |
| parent | 793a741f9c783d70ded4923d035fbbd052ea5d0a (diff) | |
| parent | f482ed085336520cf8f7072e446b8757307619e3 (diff) | |
| download | godot-28b317966f01cda96567e9eb0caef3be73c5f021.tar.gz godot-28b317966f01cda96567e9eb0caef3be73c5f021.tar.zst godot-28b317966f01cda96567e9eb0caef3be73c5f021.zip | |
| -rw-r--r-- | editor/project_settings_editor.cpp | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/editor/project_settings_editor.cpp b/editor/project_settings_editor.cpp index 900f7625b..76fd20ca1 100644 --- a/editor/project_settings_editor.cpp +++ b/editor/project_settings_editor.cpp @@ -1776,7 +1776,6 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) { //translations TabContainer *translations = memnew(TabContainer); - translations->add_style_override("panel", memnew(StyleBoxEmpty)); translations->set_tab_align(TabContainer::ALIGN_LEFT); translations->set_name(TTR("Localization")); tab_container->add_child(translations); @@ -1888,19 +1887,14 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) { translation_filter->connect("item_edited", this, "_translation_filter_option_changed"); } - { - autoload_settings = memnew(EditorAutoloadSettings); - autoload_settings->set_name(TTR("AutoLoad")); - tab_container->add_child(autoload_settings); - autoload_settings->connect("autoload_changed", this, "_settings_changed"); - } + autoload_settings = memnew(EditorAutoloadSettings); + autoload_settings->set_name(TTR("AutoLoad")); + tab_container->add_child(autoload_settings); + autoload_settings->connect("autoload_changed", this, "_settings_changed"); - { - - plugin_settings = memnew(EditorPluginSettings); - plugin_settings->set_name(TTR("Plugins")); - tab_container->add_child(plugin_settings); - } + plugin_settings = memnew(EditorPluginSettings); + plugin_settings->set_name(TTR("Plugins")); + tab_container->add_child(plugin_settings); timer = memnew(Timer); timer->set_wait_time(1.5); |
