mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:43:31 +00:00
Merge pull request #33065 from Calinou/textedit-fix-background-color
Fix the default TextEdit background color
This commit is contained in:
commit
6ce35e176f
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|||
|
||||
theme->set_font("font", "TextEdit", default_font);
|
||||
|
||||
theme->set_color("background_color", "TextEdit", Color(0, 0, 0));
|
||||
theme->set_color("background_color", "TextEdit", Color(0, 0, 0, 0));
|
||||
theme->set_color("completion_background_color", "TextEdit", Color(0.17, 0.16, 0.2));
|
||||
theme->set_color("completion_selected_color", "TextEdit", Color(0.26, 0.26, 0.27));
|
||||
theme->set_color("completion_existing_color", "TextEdit", Color(0.87, 0.87, 0.87, 0.13));
|
||||
|
|
Loading…
Reference in a new issue