Ticket #2426: 2426.patch

File 2426.patch, 1.2 KB (added by martinkou, 20 months ago)
  • _whatsnew.html

     
    6464                        </li> 
    6565                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2411">#2411</a>] Fixed the issue 
    6666                        where insert anchor no longer works for non-empty selections.</li> 
     67                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2426">#2426</a>] Fixed the issue 
     68                        where it has become impossible to switch between editor areas with a single click.</li> 
    6769        </ul> 
    6870        <h3> 
    6971                Version 2.6.3 Beta</h3> 
  • editor/_source/internals/fckselection_ie.js

     
    260260                try 
    261261                { 
    262262                        // Don't repeat the restore process if the editor document is already selected. 
    263                         if ( this._GetSelectionDocument( FCK.EditorDocument.selection ) == FCK.EditorDocument ) 
     263                        if ( String( this._GetSelectionDocument( FCK.EditorDocument.selection ).body.contentEditable ) == 'true' ) 
    264264                        { 
    265265                                FCK.IsSelectionChangeLocked = false ; 
    266266                                return ;