Ignore:
Timestamp:
01/21/14 15:24:08 (10 years ago)
Author:
jts21
Message:

Implement settings for FrameShareTimeout and StartFrame. StartFrame does not currently support returning to the last visited frame

File:
1 edited

Legend:

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

    r699 r732  
    290290                        // Go to the start frame if specified, otherwise go to the profile frame
    291291                        Frame start = null;
     292                        if(_startFrame == null) {
     293                                _startFrame = UserSettings.StartFrame.get();
     294                                if(_startFrame != null && !Character.isDigit(_startFrame.charAt(_startFrame.length() - 1)))
     295                                        _startFrame = _startFrame + "1";
     296                        }
    292297                if((start = FrameIO.LoadFrame(_startFrame)) != null) {
    293298                        // Make sure HomeFrame gets set
Note: See TracChangeset for help on using the changeset viewer.