Ignore:
Timestamp:
01/24/14 10:10:59 (10 years ago)
Author:
jts21
Message:
  • Implement redo buffer (every time you undo the changes get pushed to the redo buffer)
  • Modify undo/redo so each individual undo/redo is either a deletion or a modification, this fixes the problem where undoing a modification to an item whose id had changed would clone the item (now instead it will just not undo that modification, which should be fine since the only way to change an item's ID now is to move it to another frame and back again)
  • Fix issue with copying/cutting when there were items on FreeItems that were connected to items on the Frame (i.e. when you were moving the corner of a shape)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/agents/HFormat.java

    r742 r744  
    4848               
    4949                System.out.println(changedItems);
    50                 start.addToUndo(changedItems);
     50                start.addToUndoMove(changedItems);
    5151                return null;
    5252        }
Note: See TracChangeset for help on using the changeset viewer.