1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Got replace-all working without breaking search

This commit is contained in:
unknown
2019-07-05 02:13:03 +05:30
parent 550f436f8f
commit 2685d3324c

View File

@@ -341,7 +341,11 @@ bool FindReplaceBar::search_prev() {
bool FindReplaceBar::search_next() {
uint32_t flags = 0;
String text = get_search_text();
String text;
if (replace_all_mode)
text = get_replace_text();
else
text = get_search_text();
if (is_whole_words())
flags |= TextEdit::SEARCH_WHOLE_WORDS;