|
@@ -1041,7 +1041,6 @@ void TextEdit::_notification(int p_what) {
|
|
|
if (completion_active) {
|
|
|
// code completion box
|
|
|
Ref<StyleBox> csb = get_stylebox("completion");
|
|
|
- Ref<StyleBox> csel = get_stylebox("completion_selected");
|
|
|
int maxlines = get_constant("completion_lines");
|
|
|
int cmax_width = get_constant("completion_max_width")*cache.font->get_char_size('x').x;
|
|
|
Color existing = get_color("completion_existing");
|
|
@@ -1093,8 +1092,7 @@ void TextEdit::_notification(int p_what) {
|
|
|
VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(completion_rect.pos,completion_rect.size+Size2(scrollw,0)),cache.completion_background_color);
|
|
|
}
|
|
|
int line_from = CLAMP(completion_index - lines/2, 0, completion_options.size() - lines);
|
|
|
- draw_style_box(csel,Rect2(Point2(completion_rect.pos.x,completion_rect.pos.y+(completion_index-line_from)*get_row_height()),Size2(completion_rect.size.width,get_row_height())));
|
|
|
-
|
|
|
+ VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(Point2(completion_rect.pos.x,completion_rect.pos.y+(completion_index-line_from)*get_row_height()),Size2(completion_rect.size.width,get_row_height())),cache.completion_selected_color);
|
|
|
draw_rect(Rect2(completion_rect.pos,Size2(nofs,completion_rect.size.height)),existing);
|
|
|
|
|
|
|
|
@@ -3287,6 +3285,7 @@ void TextEdit::_update_caches() {
|
|
|
cache.style_normal=get_stylebox("normal");
|
|
|
cache.style_focus=get_stylebox("focus");
|
|
|
cache.completion_background_color=get_color("completion_background_color");
|
|
|
+ cache.completion_selected_color=get_color("completion_selected_color");
|
|
|
cache.font=get_font("font");
|
|
|
cache.caret_color=get_color("caret_color");
|
|
|
cache.line_number_color=get_color("line_number_color");
|