Ignore:
Timestamp:
06/13/08 18:00:25 (16 years ago)
Author:
ra33
Message:

Fixed up a few bugs with Saving of frames when actions are performed and with Comet and Tree stats.

File:
1 edited

Legend:

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

    r98 r103  
    2626        protected Frame process(Frame frame) {
    2727                Collection<String> seen = new HashSet<String>();
     28               
     29                DisplayIO.addToBack(frame);
     30               
    2831                // Goto the end of the comet
    2932                Item old = null;
    3033                Frame oldFrame = frame;
    3134                while (oldFrame != null) {
     35                        if(_stop)
     36                                return null;
    3237                        seen.add(oldFrame.getName().toLowerCase());
    3338                        _frameList.push(oldFrame);
     
    4651                // Back out one frame at a time
    4752                while (!_frameList.empty()) {
     53                        if(_stop)
     54                                return null;
    4855                        DisplayIO.setCurrentFrame(_frameList.pop());
    4956                        _frameCount++;
Note: See TracChangeset for help on using the changeset viewer.