Index: /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 4754)
+++ /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 4755)
@@ -662,4 +662,19 @@
 								{
 									editor.window.focus();
+
+									// Force the selection to happen, in this way
+									// we guarantee the focus will be there. (#4848)
+									if ( CKEDITOR.env.ie )
+									{
+										var sel = editor.getSelection();
+										sel = sel && sel.getNative();
+										var range = sel && sel.type && sel.createRange();
+										if ( range )
+										{
+											sel.empty();
+											range.select();
+										}
+									}
+
 									editor.selectionChange();
 								}
