(Base base)
| 358 | |
| 359 | |
| 360 | static private void handleWelcomeScreen(Base base) { |
| 361 | // Needs to be shown after the first editor window opens, so that it |
| 362 | // shows up on top, and doesn't prevent an editor window from opening. |
| 363 | if (Preferences.getBoolean("welcome.four.show")) { |
| 364 | try { |
| 365 | new Welcome(base); |
| 366 | } catch (IOException e) { |
| 367 | Messages.showTrace("Unwelcoming", |
| 368 | "Please report this error to\n" + |
| 369 | "https://github.com/processing/processing4/issues", e, false); |
| 370 | } |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | |
| 375 | /** |
no test coverage detected