mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 09:39:19 +01:00
more working on libs, building on mac
This commit is contained in:
@@ -82,8 +82,10 @@ class PdeMessageSiphon implements Runnable {
|
||||
// on linux, a "bad file descriptor" message comes up when
|
||||
// closing an applet that's being run externally.
|
||||
// use this to cause that to fail silently since not important
|
||||
if ((PdeBase.platform != PdeBase.LINUX) ||
|
||||
(e.getMessage().indexOf("Bad file descriptor") == -1)) {
|
||||
//String mess = e.getMessage();
|
||||
//if ((PdeBase.platform != PdeBase.LINUX) ||
|
||||
//(e.getMessage().indexOf("Bad file descriptor") == -1)) {
|
||||
if (e.getMessage().indexOf("Bad file descriptor") == -1) {
|
||||
System.err.println("PdeMessageSiphon err " + e);
|
||||
e.printStackTrace();
|
||||
thread = null;
|
||||
|
||||
Reference in New Issue
Block a user