Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 1094)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 1095)
@@ -52,5 +52,7 @@
 		Fixed Bugs:</p>
 	<ul>
-		<li></li>
+		<li>The focus is now correctly set when working on Safari.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1436">#1436</a>] Nested
+			context menu panels are now correctly closed on Safari.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js	(revision 1094)
+++ /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js	(revision 1095)
@@ -280,14 +280,9 @@
 				this._EnsureFocusIE() ;
 
-			if ( FCKBrowserInfo.IsSafari )
-				this.IFrame.focus() ;
-			else
-			{
-				this.Window.focus() ;
-
-				// In IE it can happen that the document is in theory focused but the active element is outside it
-				if ( FCKBrowserInfo.IsIE )
-					this._EnsureFocusIE() ;
-			}
+			this.Window.focus() ;
+
+			// In IE it can happen that the document is in theory focused but the active element is outside it
+			if ( FCKBrowserInfo.IsIE )
+				this._EnsureFocusIE() ;
 		}
 		else
