Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions java/src/processing/mode/java/runner/Runner.java
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,11 @@ synchronized public void message(String s) {
// System.err.println("message " + s.length() + ":" + s);
// }

// Ignore the warnings on macOS Sequoia to prevent confusion: https://github.com/processing/processing4/issues/864
if(s.contains("+[IMKClient subclass]:") || s.contains("+[IMKInputSession subclass]:")){
return;
}

// always shove out the message, since it might not fall under
// the same setup as we're expecting
sketchErr.print(s);
Expand Down
Loading