Opened 14 years ago
Closed 14 years ago
#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 (4)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
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 )
comment:3 Changed 14 years ago by
Keywords: | Confirmed HasPatch added |
---|
comment:4 Changed 14 years ago by
Milestone: | → FCKeditor 2.6.4 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Fixed with [2861]. Thanks for the report and patch.
Oops, wrong link:
This bug is very similar to #2653