add more error checking on startup

This commit is contained in:
Ben Fry
2015-06-16 07:14:06 -04:00
parent e8ea482a98
commit 083bc5ad31
2 changed files with 9 additions and 1 deletions
+7 -1
View File
@@ -148,7 +148,13 @@ public class Base {
static public void main(final String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
createAndShowGUI(args);
try {
createAndShowGUI(args);
} catch (Exception e) {
showBadnessTrace("It was not meant to be",
"A serious problem happened during startup. Please report:\n" +
"http://github.com/processing/processing/issues/new", e, true);
}
}
});
}
+2
View File
@@ -6,6 +6,8 @@ o http://code.google.com/p/processing/issues/detail?id=734
X https://github.com/processing/processing/issues/773
X Drag and Drop & "Add File" broken for .pde files in 3.0a10
X https://github.com/processing/processing/issues/3383
X Show "not compatible" error message in the manager
X https://github.com/processing/processing/issues/3386
gsoc
X Mode problems window wasn't doing line breaks