Ticket #2733 (closed Bug: fixed)

Opened 3 years ago

Last modified 3 years ago

Changing table cell properties cannot be undone (undoes the previous action instead)

Reported by: thiloplanz Owned by:
Priority: Normal Milestone: FCKeditor 2.6.4
Component: UI : Dialogs Version:
Keywords: Confirmed HasPatch Cc:

Description

Changing table cell properties does not insert an undo step. The result of this is that the change in properties cannot be undone. The previous action is undone instead (or rather: in addition)

This bug is very similar to #2563

Change History

comment:1 Changed 3 years ago by thiloplanz

Oops, wrong link:

This bug is very similar to #2653

comment:2 Changed 3 years ago by thiloplanz

inserting a call to SaveUndoStep fixes the problem

  • fck_src/editor/dialog/fck_tablecell.html

     
    8181// Fired when the user press the OK button 
    8282function Ok() 
    8383{ 
     84        oEditor.FCKUndo.SaveUndoStep() ; 
    8485        for( i = 0 ; i < aCells.length ; i++ ) 
    8586        { 
    8687                if ( GetE('txtWidth').value.length > 0 ) 

comment:3 Changed 3 years ago by arczi

  • Keywords Confirmed HasPatch added

comment:4 Changed 3 years ago by alfonsoml

  • Status changed from new to closed
  • Resolution set to fixed
  • Milestone set to FCKeditor 2.6.4

Fixed with [2861]. Thanks for the report and patch.

Note: See TracTickets for help on using tickets.
© 2003 – 2011 CKSource – Frederico Knabben. All rights reserved. | Terms of use | Privacy policy