Ticket #2126: 2126.patch

File 2126.patch, 1.2 kB (added by martinkou, 4 months ago)
  • _whatsnew.html

     
    7373                        </li> 
    7474                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1764">#1764</a>] FCKeditor will no longer 
    7575                        catch focus in IE on load when StartupFocus is false and the initial content is empty.</li> 
     76                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2126">#2126</a>] Opening and closing floating 
     77                        dialogs will no longer cause toolbar button states to become frozen.</li> 
    7678        </ul> 
    7779        <h3> 
    7880                Version 2.6</h3> 
  • editor/_source/internals/fckselection_ie.js

     
    260260                { 
    261261                        // Don't repeat the restore process if the editor document is already selected. 
    262262                        if ( this._GetSelectionDocument( FCK.EditorDocument.selection ) == FCK.EditorDocument ) 
     263                        { 
     264                                FCK.IsSelectionChangeLocked = false ; 
    263265                                return ; 
     266                        } 
    264267                        this.SelectionData.select() ; 
    265268                } 
    266269                catch ( e ) {}