diff options
| author | Rémi Verschelde | 2017-12-20 19:41:02 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2017-12-20 19:41:02 +0100 |
| commit | 03823f12c5ae63bee23e6ee60077c05229ab5a77 (patch) | |
| tree | 6f84433d69701d359f6ff0328244287e9ca9b329 /editor/editor_settings.cpp | |
| parent | 045f81023b25cd4ca0ec1e43b1a2ab19ad645d1b (diff) | |
| download | godot-03823f12c5ae63bee23e6ee60077c05229ab5a77.tar.gz godot-03823f12c5ae63bee23e6ee60077c05229ab5a77.tar.zst godot-03823f12c5ae63bee23e6ee60077c05229ab5a77.zip | |
EditorSettings: Move scene tab options to their dedicated category
Fixes #14870.
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index d199b27b8..bd8592722 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -258,7 +258,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { _initial_set("interface/editor/hidpi_mode", 0); hints["interface/editor/hidpi_mode"] = PropertyInfo(Variant::INT, "interface/editor/hidpi_mode", PROPERTY_HINT_ENUM, "Auto,VeryLoDPI,LoDPI,MidDPI,HiDPI", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_RESTART_IF_CHANGED); - _initial_set("interface/editor/show_script_in_scene_tabs", false); + _initial_set("interface/scene_tabs/show_script_button", false); _initial_set("interface/editor/font_size", 14); hints["interface/editor/font_size"] = PropertyInfo(Variant::INT, "interface/editor/font_size", PROPERTY_HINT_RANGE, "10,40,1", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_RESTART_IF_CHANGED); _initial_set("interface/editor/source_font_size", 14); @@ -307,7 +307,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { hints["filesystem/directories/default_project_path"] = PropertyInfo(Variant::STRING, "filesystem/directories/default_project_path", PROPERTY_HINT_GLOBAL_DIR); _initial_set("filesystem/directories/default_project_export_path", ""); hints["filesystem/directories/default_project_export_path"] = PropertyInfo(Variant::STRING, "filesystem/directories/default_project_export_path", PROPERTY_HINT_GLOBAL_DIR); - _initial_set("interface/editor/show_script_in_scene_tabs", false); + _initial_set("interface/scene_tabs/show_script_button", false); _initial_set("text_editor/theme/color_theme", "Adaptive"); hints["text_editor/theme/color_theme"] = PropertyInfo(Variant::STRING, "text_editor/theme/color_theme", PROPERTY_HINT_ENUM, "Adaptive,Default"); |
