Merge pull request #45784 from revilo/fix-45770
Fix unnecessary scrolling in TextEdit
This commit is contained in:
commit
59125d689b
1 changed files with 1 additions and 1 deletions
|
@ -2296,7 +2296,7 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
|
|||
int prev_col = cursor.column;
|
||||
int prev_line = cursor.line;
|
||||
|
||||
cursor_set_line(row, true, false);
|
||||
cursor_set_line(row, false, false);
|
||||
cursor_set_column(col);
|
||||
|
||||
if (mb->get_shift() && (cursor.column != prev_col || cursor.line != prev_line)) {
|
||||
|
|
Loading…
Reference in a new issue