mirror of
https://github.com/processing/processing4.git
synced 2026-01-28 19:01:08 +01:00
Q: Who likes to break the build? A: Who doesn't.
This commit is contained in:
@@ -353,7 +353,13 @@ public class JavaEditor extends Editor {
|
||||
item = new JMenuItem("Welcome to Processing 3");
|
||||
item.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
new Welcome(base, Preferences.getSketchbookPath().equals(Preferences.getOldSketchbookPath()));
|
||||
try {
|
||||
new Welcome(base, Preferences.getSketchbookPath().equals(Preferences.getOldSketchbookPath()));
|
||||
} catch (IOException ioe) {
|
||||
Base.showWarning("Unwelcome Error",
|
||||
"Please report this error to\n" +
|
||||
"https://github.com/processing/processing/issues", ioe);
|
||||
}
|
||||
}
|
||||
});
|
||||
menu.add(item);
|
||||
|
||||
Reference in New Issue
Block a user