From 2685d3324cae4fcf7ded3e145c5448720bec76a6 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 5 Jul 2019 02:13:03 +0530 Subject: Got replace-all working without breaking search --- editor/code_editor.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index d5aae7b562..d59f9a2e94 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -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; -- cgit v1.2.3