We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31195d0 + 1e1b3c5 commit 6c8b064Copy full SHA for 6c8b064
java/src/processing/mode/java/runner/Runner.java
@@ -952,6 +952,11 @@ synchronized public void message(String s) {
952
// System.err.println("message " + s.length() + ":" + s);
953
// }
954
955
+ // Ignore the warnings on macOS Sequoia to prevent confusion: https://github.com/processing/processing4/issues/864
956
+ if(s.contains("+[IMKClient subclass]:") || s.contains("+[IMKInputSession subclass]:")){
957
+ return;
958
+ }
959
+
960
// always shove out the message, since it might not fall under
961
// the same setup as we're expecting
962
sketchErr.print(s);
0 commit comments