Merge pull request #124 from kwando/fix_better_error_dialog

Fix for the ErrorDialog.
This commit is contained in:
Stephen Gold 2014-04-17 11:11:21 -07:00
commit a8e04797e5

View File

@ -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);
}
}