Ticket #2733 (closed Bug: fixed)

Opened 15 months ago

Last modified 15 months 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

Changed 15 months ago by thiloplanz

Oops, wrong link:

This bug is very similar to #2653

Changed 15 months 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 ) 

Changed 15 months ago by arczi

  • keywords Confirmed HasPatch added

Changed 15 months 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.