Index: dojo-release-1.3.2-src/dijit/_editor/RichText.js =================================================================== --- dojo-release-1.3.2-src.orig/dijit/_editor/RichText.js 2009-11-18 12:06:37.000000000 -0800 +++ dojo-release-1.3.2-src/dijit/_editor/RichText.js 2009-11-18 12:07:57.000000000 -0800 @@ -796,7 +796,9 @@ if(dojo.isIE){ // IE contentEditable // give the node Layout on IE - this.connect(this.document, "onmousedown", "_onIEMouseDown"); // #4996 fix focus + // change onmousedown to onclick. This eliminates unexpected mousedown + // event when editor scrollbar is clicked/dragged upon + this.connect(this.document, "onclick", "_onIEMouseDown"); // #4996 fix focus this.editNode.style.zoom = 1.0; }