Index: /FCKeditor/trunk/editor/_source/classes/fckcontextmenu.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fckcontextmenu.js	(revision 681)
+++ /FCKeditor/trunk/editor/_source/classes/fckcontextmenu.js	(revision 682)
@@ -89,8 +89,4 @@
 function FCKContextMenu_Document_OnContextMenu( e )
 {
-	// If we haven't created the event in Opera ignore it.
-	if ( FCKBrowserInfo.IsOpera && !e.synthetic )
-		return false;
-
 	var el = e.target ;
 
@@ -160,9 +156,13 @@
 // TODO: The menu appears way too high.
 //       Respect the preference to keep the default contextmenu on ctrl
-// 		 Provide an alternative to show the contextmenu using left click + accelerator
+// 		 Provide an alternative to show the contextmenu using left click + accelerator. That's not exclusive to Opera.
 // 		 review the code and test it!
 FCKContextMenu.prototype.ConfigureOpera = function()
 {
 	doc = this._Document ;
+	
+	// If contextmenu is supported then exit, nothing to do
+	if ( 'oncontextmenu' in doc.createElement('foo') )
+		return;
 	
 	doc.addEventListener( 'mousedown', FCKContextMenu_Opera_mousedown, true ) ;
