We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc19553 commit ae17d34Copy full SHA for ae17d34
src/main/java/eu/mihosoft/vrl/v3d/CSGClient.java
@@ -203,8 +203,10 @@ public static void close() {
203
}
204
205
public static boolean isRunning() {
206
- if(javafx.application.Platform.isFxApplicationThread())
+ if(javafx.application.Platform.isFxApplicationThread()) {
207
+ new Exception("ERROR! CSG operation detected on UI thread, this is a BAD idea!");
208
return false;// do not run operation on UI thread
209
+ }
210
if (isServerCall())
211
return false;
212
if (getClient() == null)
0 commit comments