summaryrefslogtreecommitdiff
path: root/scene/gui
diff options
context:
space:
mode:
authorPaulb23 <p_batty@hotmail.co.uk>2018-01-14 16:06:27 +0000
committerPaulb23 <p_batty@hotmail.co.uk>2018-01-14 16:06:27 +0000
commit386c57cfad60cba7af4c00b90600ac9801d3edbd (patch)
treeeec2375871218df9c214a47f652a2456067fc90a /scene/gui
parent69452fbc3754ed517280a674aa61b36de31cac7f (diff)
Fixed current line highligting with horizontal clipping, issue 15427
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/text_edit.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp
index 439b0ce605..4d87a6b3ba 100644
--- a/scene/gui/text_edit.cpp
+++ b/scene/gui/text_edit.cpp
@@ -1119,6 +1119,19 @@ void TextEdit::_notification(int p_what) {
if ((char_ofs + char_margin) < xmargin_beg) {
char_ofs += char_w;
+
+ // line highlighting handle horizontal clipping
+ if (line == cursor.line && highlight_current_line) {
+ // char next to margin is skipped
+ if ((char_ofs + char_margin) > xmargin_beg) {
+ VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(xmargin_beg + ofs_x, ofs_y, (char_ofs + char_margin) - (xmargin_beg + ofs_x), get_row_height()), cache.current_line_color);
+ }
+
+ // end of line when last char is skipped
+ if (j == str.length() - 1) {
+ VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(xmargin_beg + ofs_x, ofs_y, xmargin_end - (char_ofs + char_margin + char_w), get_row_height()), cache.current_line_color);
+ }
+ }
continue;
}