Ignore:
Timestamp:
07/28/08 15:08:13 (16 years ago)
Author:
ra33
Message:

Added faster versions of search frameset

File:
1 edited

Legend:

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

    r156 r162  
    6262         * The title to display in the Title bar.
    6363         */
    64         public static final String TITLE = "Exp22Jul2008A";
     64        public static final String TITLE = "Exp28Jul2008A";
    6565
    6666        private DisplayIO() {
     
    605605                Frame frame = FrameIO.LoadFrame(_VisitedFrames[side].pop());
    606606                // If the top frame on the backup stack is the current frame go back
    607                 // again...
    608                 if (frame.equals(getCurrentFrame())) {
     607                // again... or if it has been deleted
     608                //Recursively backup the stack
     609                if(frame == null || frame.equals(getCurrentFrame())) {
    609610                        Back();
    610611                        return;
Note: See TracChangeset for help on using the changeset viewer.