We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 229aade commit 08e352aCopy full SHA for 08e352a
1 file changed
chunky/src/java/se/llbit/chunky/ui/RenderCanvasFx.java
@@ -440,6 +440,10 @@ public void setRenderListener(RenderStatusListener renderListener) {
440
441
@Override public void sceneStatus(String status) {
442
Platform.runLater(() -> {
443
+ if (!getScene().getWindow().isFocused()) {
444
+ return;
445
+ }
446
+
447
Point2D offset = localToScene(0, 0);
448
tooltip.setText(status);
449
tooltip.show(this,
0 commit comments