more bug fixing

This commit is contained in:
benfry
2011-01-26 19:01:31 +00:00
parent 54bf1c34a0
commit 9da9c94b18
6 changed files with 22 additions and 20 deletions

View File

@@ -67,12 +67,12 @@ public class JavaToolbar extends EditorToolbar {
static public String getTitle(int index, boolean shift) {
switch (index) {
case RUN: return shift ? "Run" : "Present";
case RUN: return !shift ? "Run" : "Present";
case STOP: return "Stop";
case NEW: return shift ? "New" : "New Editor Window";
case OPEN: return shift ? "Open" : "Open in Another Window";
case NEW: return !shift ? "New" : "New Editor Window";
case OPEN: return !shift ? "Open" : "Open in Another Window";
case SAVE: return "Save";
case EXPORT: return shift ? "Export Applet" : "Export Application";
case EXPORT: return !shift ? "Export Applet" : "Export Application";
}
return null;
}