Fix editor infinit loop in search_prev
Fixes godotengine#31328
This commit is contained in:
parent
7e731bbce2
commit
544c39d1e7
2 changed files with 9 additions and 8 deletions
|
|
@ -366,14 +366,12 @@ bool FindReplaceBar::search_prev() {
|
|||
if (text_edit->is_selection_active())
|
||||
col--; // Skip currently selected word.
|
||||
|
||||
if (line == result_line && col == result_col) {
|
||||
col -= text.length();
|
||||
if (col < 0) {
|
||||
line -= 1;
|
||||
if (line < 0)
|
||||
line = text_edit->get_line_count() - 1;
|
||||
col = text_edit->get_line(line).length();
|
||||
}
|
||||
col -= text.length();
|
||||
if (col < 0) {
|
||||
line -= 1;
|
||||
if (line < 0)
|
||||
line = text_edit->get_line_count() - 1;
|
||||
col = text_edit->get_line(line).length();
|
||||
}
|
||||
|
||||
return _search(flags, line, col);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue