Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 1520)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 1521)
@@ -94,4 +94,7 @@
 			was entering on looping on some specific cases when dealing with invalid source
 			markup.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1530">#1530</a>] Pasting text into the
+			"Find what" fields in the Find and Replace dialog would now activate the find and replace 
+			buttons.</li>
 	</ul>
 	<p>
Index: /FCKeditor/trunk/editor/dialog/fck_replace.html
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_replace.html	(revision 1520)
+++ /FCKeditor/trunk/editor/dialog/fck_replace.html	(revision 1521)
@@ -96,5 +96,5 @@
 }
 
-function btnStat(frm)
+function btnStat()
 {
 	document.getElementById('btnReplace').disabled =
@@ -102,4 +102,9 @@
 			document.getElementById('btnFind').disabled =
 				( document.getElementById(idMap["FindText"]).value.length == 0 ) ;
+}
+
+function btnStatDelayed()
+{
+	setTimeout( btnStat, 1 ) ;
 }
 
@@ -442,5 +447,5 @@
 				</td>
 				<td width="100%">
-					<input id="txtFindFind" onkeyup="btnStat(this.form)" style="width: 100%" tabindex="1"
+					<input id="txtFindFind" onkeyup="btnStat()" oninput="btnStat()" onpaste="btnStatDelayed()" style="width: 100%" tabindex="1"
 						type="text" />
 				</td>
@@ -469,5 +474,5 @@
 				</td>
 				<td width="100%">
-					<input id="txtFindReplace" onkeyup="btnStat(this.form)" style="width: 100%" tabindex="1"
+					<input id="txtFindReplace" onkeyup="btnStat()" oninput="btnStat()" onpaste="btnStatDelayed()" style="width: 100%" tabindex="1"
 						type="text" />
 				</td>
