Skip to content

Commit 6877a50

Browse files
committed
fixed about
1 parent 6a0db19 commit 6877a50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

electrum/src/main/java/edu/mit/csail/sdg/alloy4whole/SimpleGUI.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ private Runner notifyChange() {
397397
if (text==null) return null; // If this was called prior to the "text" being fully initialized
398398
OurSyntaxWidget t = text.get();
399399
if (Util.onMac()) frame.getRootPane().putClientProperty("windowModified", Boolean.valueOf(t.modified()));
400-
if (t.isFile()) frame.setTitle(t.getFilename()); else frame.setTitle("Alloy Analyzer "+Version.version() + " (Electrum Analyzer"+Version.eleVersion()+")");
400+
if (t.isFile()) frame.setTitle(t.getFilename()); else frame.setTitle("Alloy Analyzer "+Version.version() + " (Electrum Analyzer "+Version.eleVersion()+")");
401401
toolbar.setBorder(new OurBorder(false, false, text.count()<=1, false));
402402
int c = t.getCaret();
403403
int y = t.getLineOfOffset(c)+1;
@@ -1790,7 +1790,7 @@ private SimpleGUI (final String[] args) {
17901790

17911791
// Enable better look-and-feel
17921792
if (Util.onMac() || Util.onWindows()) {
1793-
System.setProperty("com.apple.mrj.application.apple.menu.about.name", "Alloy Analyzer "+Version.version() + " (Electrum Analyzer"+Version.eleVersion()+")");
1793+
System.setProperty("com.apple.mrj.application.apple.menu.about.name", "Alloy Analyzer "+Version.version() + " (Electrum Analyzer "+Version.eleVersion()+")");
17941794
System.setProperty("com.apple.mrj.application.growbox.intrudes","true");
17951795
System.setProperty("com.apple.mrj.application.live-resize","true");
17961796
System.setProperty("com.apple.macos.useScreenMenuBar","true");
@@ -1826,7 +1826,7 @@ private SimpleGUI (final String[] args) {
18261826
frame.setSize(width,height);
18271827
frame.setLocation(x,y);
18281828
frame.setVisible(true);
1829-
frame.setTitle("Alloy Analyzer (Electrum) "+Version.version()+" loading... please wait...");
1829+
frame.setTitle("Alloy Analyzer "+Version.version()+" (Electrum Analyzer "+Version.eleVersion()+") loading... please wait...");
18301830
final int windowWidth = width;
18311831
// We intentionally call setVisible(true) first before settings the "please wait" title,
18321832
// since we want the minimized window title on Linux/FreeBSD to just say Alloy Analyzer

0 commit comments

Comments
 (0)