Fix for the ErrorDialog.

Turns out the imporved  error dialog was less helpful than the old one...
experimental
Hannes Nevalainen 11 years ago
parent 1b3c2e4436
commit 2b8cdbb34c
  1. 2
      jme3-desktop/src/main/java/com/jme3/system/ErrorDialog.java

@ -59,7 +59,7 @@ public class ErrorDialog extends JDialog {
* @param message
*/
public static void showDialog(String message){
ErrorDialog dialog = new ErrorDialog("Opps, this was bad =S");
ErrorDialog dialog = new ErrorDialog(message);
dialog.setVisible(true);
}
}

Loading…
Cancel
Save