Ticket #2733 (closed Bug: fixed)
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:2 Changed 3 years ago by thiloplanz
inserting a call to SaveUndoStep fixes the problem
-
fck_src/editor/dialog/fck_tablecell.html
81 81 // Fired when the user press the OK button 82 82 function Ok() 83 83 { 84 oEditor.FCKUndo.SaveUndoStep() ; 84 85 for( i = 0 ; i < aCells.length ; i++ ) 85 86 { 86 87 if ( GetE('txtWidth').value.length > 0 )
Note: See
TracTickets for help on using
tickets.

Oops, wrong link:
This bug is very similar to #2653