You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fixed freeze on search_prev (missing condition for searching from a previous result, now the same as search_next)
Fixes #31328
This commit is contained in:
@@ -362,6 +362,7 @@ bool FindReplaceBar::search_prev() {
|
||||
int line, col;
|
||||
_get_search_from(line, col);
|
||||
|
||||
if (line == result_line && col == result_col) {
|
||||
col -= text.length();
|
||||
if (col < 0) {
|
||||
line -= 1;
|
||||
@@ -369,6 +370,7 @@ bool FindReplaceBar::search_prev() {
|
||||
line = text_edit->get_line_count() - 1;
|
||||
col = text_edit->get_line(line).length();
|
||||
}
|
||||
}
|
||||
|
||||
return _search(flags, line, col);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user