summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/gui/Gui.java
diff options
context:
space:
mode:
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 }