Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6956)
+++ /CKEditor/trunk/CHANGES.html	(revision 6957)
@@ -73,4 +73,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/7801">#7801</a> : [Opera] Pasted paragraphs now split partial selected blocks.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/6663">#6663</a> : Table caption that contains rich text is not anymore corrupted after edit with table dialog.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/7192">#7192</a> : [IE] Selecting paragrpah format in an empty editor without focus didn't bring focus into editor body.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/7834">#7834</a> : Dutch;</li>
Index: /CKEditor/trunk/_source/plugins/format/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/format/plugin.js	(revision 6956)
+++ /CKEditor/trunk/_source/plugins/format/plugin.js	(revision 6957)
@@ -64,4 +64,6 @@
 					{
 						editor.fire( 'saveSnapshot' );
+						// At this point, focus might be lost (#7192).
+						CKEDITOR.env.ie && editor.focus();
 					}, 0 );
 				},
