Fixed not being able to scroll ending wrapped line
This commit is contained in:
parent
0ab0d11c17
commit
25cba699f0
1 changed files with 1 additions and 1 deletions
|
@ -4585,7 +4585,7 @@ void TextEdit::_scroll_moved(double p_to_val) {
|
||||||
int v_scroll_i = floor(get_v_scroll());
|
int v_scroll_i = floor(get_v_scroll());
|
||||||
int sc = 0;
|
int sc = 0;
|
||||||
int n_line;
|
int n_line;
|
||||||
for (n_line = 0; n_line < text.size() - 1; n_line++) {
|
for (n_line = 0; n_line < text.size(); n_line++) {
|
||||||
if (!is_line_hidden(n_line)) {
|
if (!is_line_hidden(n_line)) {
|
||||||
sc++;
|
sc++;
|
||||||
sc += times_line_wraps(n_line);
|
sc += times_line_wraps(n_line);
|
||||||
|
|
Loading…
Reference in a new issue