Ignore:
Timestamp:
07/02/08 17:26:51 (16 years ago)
Author:
ra33
Message:

Added SearchItem and SearchStr

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/Frame.java

    r115 r116  
    750750        public void undo() {
    751751                Item undo = null;
     752                boolean bReparse = false;
    752753
    753754                if (_undo.size() <= 0)
     
    755756
    756757                undo = _undo.pop();
    757 
     758               
    758759                // if the change was to characteristics
    759760                if (undo.isVisible() && _body.contains(undo)) {
     
    786787
    787788                        for (Item i : toRestore) {
     789                                bReparse |= i.hasOverlay();
    788790                                if (i instanceof Line) {
    789791                                        Line line = (Line) i;
     
    798800                change();
    799801                FrameMouseActions.getInstance().refreshHighlights();
     802                if(bReparse)
     803                        FrameUtils.Parse(this, false);
    800804                FrameGraphics.Repaint();
    801805                ItemUtils.EnclosedCheck(_body);
Note: See TracChangeset for help on using the changeset viewer.