summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/gui/Gui.java
diff options
context:
space:
mode:
authorGravatar jeff2014-08-23 23:43:31 -0400
committerGravatar jeff2014-08-23 23:43:31 -0400
commit8fa1741b621644ef84a9395a4c395d4ff3a89207 (patch)
tree9cc054e2636dd13a32950ad68dba212275d33026 /src/cuchaz/enigma/gui/Gui.java
parentadded export command with progress bar (diff)
downloadenigma-fork-8fa1741b621644ef84a9395a4c395d4ff3a89207.tar.gz
enigma-fork-8fa1741b621644ef84a9395a4c395d4ff3a89207.tar.xz
enigma-fork-8fa1741b621644ef84a9395a4c395d4ff3a89207.zip
moved all classes from the default package into a package called "default" so they can be properly imported by other classes
Diffstat (limited to 'src/cuchaz/enigma/gui/Gui.java')
-rw-r--r--src/cuchaz/enigma/gui/Gui.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/gui/Gui.java b/src/cuchaz/enigma/gui/Gui.java
index febdfd4..4e63606 100644
--- a/src/cuchaz/enigma/gui/Gui.java
+++ b/src/cuchaz/enigma/gui/Gui.java
@@ -1073,8 +1073,9 @@ public class Gui
1073 } 1073 }
1074 catch( IllegalNameException ex ) 1074 catch( IllegalNameException ex )
1075 { 1075 {
1076 ex.printStackTrace( System.err );
1077 text.setBorder( BorderFactory.createLineBorder( Color.red, 1 ) ); 1076 text.setBorder( BorderFactory.createLineBorder( Color.red, 1 ) );
1077 text.setToolTipText( ex.getReason() );
1078 GuiTricks.showToolTipNow( text );
1078 } 1079 }
1079 return; 1080 return;
1080 } 1081 }