TextEdit: When left mouse is pressed to place the cursor, do not immediately adjust the viewport when cursor_set_line is called, but afterwards on cursor_set_column (effectively when the cursor reached its final position)
Fixes #45770
(cherry picked from commit 8d598693fc
)
This commit is contained in:
parent
3abe6ae281
commit
db57f32194
1 changed files with 1 additions and 1 deletions
|
@ -2389,7 +2389,7 @@ void TextEdit::_gui_input(const Ref<InputEvent> &p_gui_input) {
|
||||||
int prev_col = cursor.column;
|
int prev_col = cursor.column;
|
||||||
int prev_line = cursor.line;
|
int prev_line = cursor.line;
|
||||||
|
|
||||||
cursor_set_line(row, true, false);
|
cursor_set_line(row, false, false);
|
||||||
cursor_set_column(col);
|
cursor_set_column(col);
|
||||||
|
|
||||||
if (mb->get_shift() && (cursor.column != prev_col || cursor.line != prev_line)) {
|
if (mb->get_shift() && (cursor.column != prev_col || cursor.line != prev_line)) {
|
||||||
|
|
Loading…
Reference in a new issue