Allow moving LineEdit visible window left by more than one symbol.

This commit is contained in:
Kārlis Seņko 2019-02-19 23:59:09 +02:00
parent aa5b99821b
commit 86374c0431

View file

@ -1154,9 +1154,7 @@ void LineEdit::set_cursor_position(int p_pos) {
if (cursor_pos <= window_pos) {
/* Adjust window if cursor goes too much to the left */
if (window_pos > 0)
set_window_pos(window_pos - 1);
set_window_pos(MAX(0, cursor_pos - 1));
} else if (cursor_pos > window_pos) {
/* Adjust window if cursor goes too much to the right */
int window_width = get_size().width - style->get_minimum_size().width;