mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
add more error checking on startup
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user