Ignore:
Timestamp:
07/22/08 10:05:32 (16 years ago)
Author:
ra33
Message:

Fixing bugs for Rob

Location:
trunk/src/org/expeditee/agents
Files:
5 edited

Legend:

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

    r108 r154  
    55import org.expeditee.gui.AttributeUtils;
    66import org.expeditee.gui.Frame;
     7import org.expeditee.gui.FrameGraphics;
    78import org.expeditee.gui.FrameIO;
    89import org.expeditee.items.Item;
     
    2324                        message("Nothing to compute!");
    2425                }
    25 
     26               
    2627                return null;
    2728        }
  • trunk/src/org/expeditee/agents/DefaultAgent.java

    r133 r154  
    22
    33import org.expeditee.gui.Frame;
     4import org.expeditee.gui.FrameGraphics;
    45import org.expeditee.gui.MessageBay;
    56import org.expeditee.gui.TimeKeeper;
     
    101102                _running = false;
    102103
     104                FrameGraphics.requestRefresh(true);
    103105                SessionStats.setEnabled(true);
    104106        }
  • trunk/src/org/expeditee/agents/DisplayComet.java

    r121 r154  
    5353                        if(_stop)
    5454                                return null;
    55                         DisplayIO.setCurrentFrame(_frameList.pop());
     55                        DisplayIO.setCurrentFrame(_frameList.pop(), true);
    5656                        _frameCount++;
    5757                        pause(_delay);
  • trunk/src/org/expeditee/agents/DisplayTree.java

    r133 r154  
    33import org.expeditee.gui.DisplayIO;
    44import org.expeditee.gui.Frame;
     5import org.expeditee.gui.FrameUtils;
    56import org.expeditee.gui.MessageBay;
    67import org.expeditee.items.Item;
     
    6263                // ignore loops
    6364                if (toProcess != DisplayIO.getCurrentFrame())
    64                         DisplayIO.setCurrentFrame(toProcess);
    65                 // FrameUtils.DisplayFrame(toProcess,false);
     65                        DisplayIO.setCurrentFrame(toProcess, false);
    6666                // parse the frame for any pause settings
    6767                delay(toProcess);
  • trunk/src/org/expeditee/agents/Format.java

    r143 r154  
    4646                //Check the position of the cursor and only format stuff inside the same box as the cursor
    4747                Collection<Text> itemsToFormat = FrameUtils.getCurrentTextItems();
    48                 if(itemsToFormat.size() <= 1){
     48                if(itemsToFormat.size() < 1){
    4949                        itemsToFormat = start.getBodyTextItems(true);
    5050                }
Note: See TracChangeset for help on using the changeset viewer.