Ignore:
Timestamp:
12/03/19 16:49:18 (4 years ago)
Author:
bnemhaus
Message:

Window title now notifies you when you are in surrogate mode.
Window title also now notifies you when you are running demo mode.

File:
1 edited

Legend:

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

    r1443 r1480  
    700700                }
    701701               
     702                if (Boolean.getBoolean("expeditee.demo-mode")) {
     703                        title.append( " [DEMO MODE ACTIVE] ");
     704                }
     705               
     706                if (Label.isInSurrogateMode()) {
     707                        title.append(" [" + Label.surrogateModeString() + "]");
     708                }
     709               
    702710                EcosystemManager.getGraphicsManager().setWindowTitle(title.toString());
    703711        }
Note: See TracChangeset for help on using the changeset viewer.