diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-25 16:35:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-25 16:35:42 +0200 |
commit | 6ce35e176fdb31a6ff5c570bf72a53bdde343c5d (patch) | |
tree | 697b8e70ade8f1d62091e64facc2a402f73ee0a1 | |
parent | 3c7cd84a843b5cc870890d128711c7f3d497ddf4 (diff) | |
parent | c5279432fdb066a46bb8bcc982ed1a821b5761f7 (diff) |
Merge pull request #33065 from Calinou/textedit-fix-background-color
Fix the default TextEdit background color
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 0dcc184a1d..1a053a18c9 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -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)); |