diff options
| author | Paulb23 | 2016-06-21 17:21:55 +0100 |
|---|---|---|
| committer | Paulb23 | 2016-06-21 17:21:55 +0100 |
| commit | 706895a922d69c5825d2d2a2d51ca205b1b81ea3 (patch) | |
| tree | 7c869a01a07b302c19fe7b7be7fb69150db09240 /tools/editor/editor_settings.cpp | |
| parent | a40cb680cae75342ef86443c6996024199b1391d (diff) | |
| download | godot-706895a922d69c5825d2d2a2d51ca205b1b81ea3.tar.gz godot-706895a922d69c5825d2d2a2d51ca205b1b81ea3.tar.zst godot-706895a922d69c5825d2d2a2d51ca205b1b81ea3.zip | |
Added code completion selected color setting
Diffstat (limited to 'tools/editor/editor_settings.cpp')
| -rw-r--r-- | tools/editor/editor_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 0eca84179..eec505c66 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -675,6 +675,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { void EditorSettings::_load_default_text_editor_theme() { set("text_editor/background_color",Color::html("3b000000")); set("text_editor/completion_background_color", Color::html("2C2A32")); + set("text_editor/completion_selected_color", Color::html("434244")); set("text_editor/caret_color",Color::html("aaaaaa")); set("text_editor/line_number_color",Color::html("66aaaaaa")); set("text_editor/text_color",Color::html("aaaaaa")); @@ -908,6 +909,7 @@ bool EditorSettings::_save_text_editor_theme(String p_file) { Ref<ConfigFile> cf = memnew( ConfigFile ); // hex is better? cf->set_value(theme_section, "background_color", ((Color)get("text_editor/background_color")).to_html()); cf->set_value(theme_section, "completion_background_color", ((Color)get("text_editor/completion_background_color")).to_html()); + cf->set_value(theme_section, "completion_selected_color", ((Color)get("text_editor/completion_selected_color")).to_html()); cf->set_value(theme_section, "caret_color", ((Color)get("text_editor/caret_color")).to_html()); cf->set_value(theme_section, "line_number_color", ((Color)get("text_editor/line_number_color")).to_html()); cf->set_value(theme_section, "text_color", ((Color)get("text_editor/text_color")).to_html()); |
