Stopped edge stripping when using Find in Files
(cherry picked from commit 0179791e85
)
This commit is contained in:
parent
9a340a2868
commit
3b35454ac3
|
@ -431,8 +431,7 @@ void FindInFilesDialog::set_find_in_files_mode(FindInFilesMode p_mode) {
|
||||||
}
|
}
|
||||||
|
|
||||||
String FindInFilesDialog::get_search_text() const {
|
String FindInFilesDialog::get_search_text() const {
|
||||||
String text = _search_text_line_edit->get_text();
|
return _search_text_line_edit->get_text();
|
||||||
return text.strip_edges();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String FindInFilesDialog::get_replace_text() const {
|
String FindInFilesDialog::get_replace_text() const {
|
||||||
|
|
Loading…
Reference in New Issue