فهرست منبع

Merge pull request #29029 from Calinou/find-in-files-allow-empty-replace

Allow empty replacement texts in the Find in Files replace dialog
Rémi Verschelde 6 سال پیش
والد
کامیت
af731f8d0f
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      editor/find_in_files.cpp

+ 1 - 2
editor/find_in_files.cpp

@@ -751,7 +751,6 @@ void FindInFilesPanel::_on_replace_text_changed(String text) {
 void FindInFilesPanel::_on_replace_all_clicked() {
 void FindInFilesPanel::_on_replace_all_clicked() {
 
 
 	String replace_text = get_replace_text();
 	String replace_text = get_replace_text();
-	ERR_FAIL_COND(replace_text.empty());
 
 
 	PoolStringArray modified_files;
 	PoolStringArray modified_files;
 
 
@@ -887,7 +886,7 @@ String FindInFilesPanel::get_replace_text() {
 void FindInFilesPanel::update_replace_buttons() {
 void FindInFilesPanel::update_replace_buttons() {
 
 
 	String text = get_replace_text();
 	String text = get_replace_text();
-	bool disabled = text.empty() || _finder->is_searching();
+	bool disabled = _finder->is_searching();
 
 
 	_replace_all_button->set_disabled(disabled);
 	_replace_all_button->set_disabled(disabled);
 }
 }