summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-06-13 15:38:48 -0300
committerGitHub <noreply@github.com>2016-06-13 15:38:48 -0300
commit137464af870d4155d948c5956876936c54c8d6f4 (patch)
tree2a6d53e4d62d0a8f91ca5395ddb77eedbd0a98ed /tools
parent5f674bdca1dafd7073c769a3830dac15f5dbc9d6 (diff)
parentb90ecc6e0a5fe2c664b33ef6dd563290bbe35841 (diff)
Merge pull request #5187 from volzhs/find-nomatch-notice
change "No matches" noticeable on finder
Diffstat (limited to 'tools')
-rw-r--r--tools/editor/code_editor.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/editor/code_editor.cpp b/tools/editor/code_editor.cpp
index f62209fafa..d023827a3c 100644
--- a/tools/editor/code_editor.cpp
+++ b/tools/editor/code_editor.cpp
@@ -521,6 +521,9 @@ FindReplaceBar::FindReplaceBar() {
error_label = memnew(Label);
search_options->add_child(error_label);
+ error_label->add_color_override("font_color", Color(1,1,0,1));
+ error_label->add_color_override("font_color_shadow", Color(0,0,0,1));
+ error_label->add_constant_override("shadow_as_outline", 1);
search_options->add_spacer();