Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1519)
+++ _whatsnew.html	(working copy)
@@ -93,6 +93,9 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1717">#1717</a>] The editor
 			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>
 		<a href="_whatsnew_history.html">See previous versions history</a>
Index: editor/dialog/fck_replace.html
===================================================================
--- editor/dialog/fck_replace.html	(revision 1519)
+++ editor/dialog/fck_replace.html	(working copy)
@@ -95,7 +95,7 @@
 	SelectField( 'txtFind' + dialogArguments.CustomValue ) ;
 }
 
-function btnStat(frm)
+function btnStat()
 {
 	document.getElementById('btnReplace').disabled =
 		document.getElementById('btnReplaceAll').disabled =
@@ -103,6 +103,11 @@
 				( document.getElementById(idMap["FindText"]).value.length == 0 ) ;
 }
 
+function btnStatDelayed()
+{
+	setTimeout( btnStat, 1 ) ;
+}
+
 function GetSearchString()
 {
 	return document.getElementById(idMap['FindText']).value ;
@@ -441,7 +446,7 @@
 						Find what:</label>
 				</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>
 				<td>
@@ -468,7 +473,7 @@
 						Find what:</label>
 				</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>
 				<td>
