mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 03:21:25 +00:00
Added code completion background color setting
This commit is contained in:
parent
6872139300
commit
a40cb680ca
5 changed files with 9 additions and 1 deletions
|
|
@ -78,6 +78,7 @@ void ShaderTextEditor::_load_theme_settings() {
|
|||
/* keyword color */
|
||||
|
||||
get_text_edit()->set_custom_bg_color(EDITOR_DEF("text_editor/background_color",Color(0,0,0,0)));
|
||||
get_text_edit()->add_color_override("completion_background_color", EDITOR_DEF("text_editor/completion_background_color", Color(0,0,0,0)));
|
||||
get_text_edit()->add_color_override("font_color",EDITOR_DEF("text_editor/text_color",Color(0,0,0)));
|
||||
get_text_edit()->add_color_override("line_number_color",EDITOR_DEF("text_editor/line_number_color",Color(0,0,0)));
|
||||
get_text_edit()->add_color_override("caret_color",EDITOR_DEF("text_editor/caret_color",Color(0,0,0)));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue