aboutsummaryrefslogtreecommitdiff
path: root/scene/resources/default_theme/default_theme.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-06-22 07:51:33 +0200
committerGitHub2016-06-22 07:51:33 +0200
commit87cb3629f2ae34ee65b2edaa52199c302d14f4e2 (patch)
tree20922ffc27fdc1d1cfaf9a54e9e04f318c85cedb /scene/resources/default_theme/default_theme.cpp
parent5974653307b56cfd8ed5a8b784f23e7f5822a6f4 (diff)
parent45f0dec55c64c62f6f47b6fc6735af33afb6e028 (diff)
downloadgodot-87cb3629f2ae34ee65b2edaa52199c302d14f4e2.tar.gz
godot-87cb3629f2ae34ee65b2edaa52199c302d14f4e2.tar.zst
godot-87cb3629f2ae34ee65b2edaa52199c302d14f4e2.zip
Merge pull request #5344 from Paulb23/code_completion_colors
Code completion box colors
Diffstat (limited to '')
-rw-r--r--scene/resources/default_theme/default_theme.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp
index 53a186f0c..db45a998c 100644
--- a/scene/resources/default_theme/default_theme.cpp
+++ b/scene/resources/default_theme/default_theme.cpp
@@ -470,7 +470,6 @@ void fill_default_theme(Ref<Theme>& t,const Ref<Font> & default_font,const Ref<F
t->set_font("font","TextEdit", default_font );
t->set_color("completion_scroll_color","TextEdit", control_font_color_pressed );
- t->set_color("completion_existing","TextEdit", control_font_color );
t->set_color("font_color","TextEdit", control_font_color );
t->set_color("font_color_selected","TextEdit", Color(0,0,0) );
t->set_color("selection_color","TextEdit", font_color_selection );
@@ -696,12 +695,6 @@ void fill_default_theme(Ref<Theme>& t,const Ref<Font> & default_font,const Ref<F
t->set_stylebox("cursor_unfocused","ItemList", focus );
- // TextEdit
-
- t->set_stylebox("completion_selected","TextEdit", tree_selected );
-
-
-
// TabContainer
Ref<StyleBoxTexture> tc_sb = sb_expand( make_stylebox( tab_container_bg_png,4,4,4,4,4,4,4,4),3,3,3,3);