Merge pull request #27097 from siddharth952/master

Adjusts the default color for search border
This commit is contained in:
Max Hilbrunner
2019-05-16 23:17:53 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -1121,7 +1121,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
const Color executing_line_color = Color(0.2, 0.8, 0.2, 0.4);
const Color code_folding_color = alpha3;
const Color search_result_color = alpha1;
const Color search_result_border_color = alpha3;
const Color search_result_border_color = Color(0.41, 0.61, 0.91, 0.38);
EditorSettings *setting = EditorSettings::get_singleton();
String text_editor_color_theme = setting->get("text_editor/theme/color_theme");