mirror of
https://github.com/godotengine/godot.git
synced 2024-11-15 00:23:27 +00:00
Fixed drawing the caret at eol when at eol is not visible
This commit is contained in:
parent
234289de2b
commit
6025a76c78
@ -1271,7 +1271,8 @@ void TextEdit::_notification(int p_what) {
|
||||
}
|
||||
|
||||
// Loop through characters in one line.
|
||||
for (int j = 0; j < str.length(); j++) {
|
||||
int j = 0;
|
||||
for (; j < str.length(); j++) {
|
||||
|
||||
if (syntax_coloring) {
|
||||
if (color_map.has(last_wrap_column + j)) {
|
||||
@ -1501,7 +1502,7 @@ void TextEdit::_notification(int p_what) {
|
||||
}
|
||||
}
|
||||
|
||||
if (cursor.column == last_wrap_column + str.length() && cursor.line == line && cursor_wrap_index == line_wrap_index && (char_ofs + char_margin) >= xmargin_beg) {
|
||||
if (cursor.column == (last_wrap_column + j) && cursor.line == line && cursor_wrap_index == line_wrap_index && (char_ofs + char_margin) >= xmargin_beg) {
|
||||
|
||||
cursor_pos = Point2i(char_ofs + char_margin + ofs_x, ofs_y);
|
||||
cursor_pos.y += (get_row_height() - cache.font->get_height()) / 2;
|
||||
|
Loading…
Reference in New Issue
Block a user