Skip to content

Commit d4c4f18

Browse files
committed
CSSTUDIO-3429 Call layout() unconditionally in updateChanges().
1 parent 2a9713d commit d4c4f18

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

app/display/representation-javafx/src/main/java/org/csstudio/display/builder/representation/javafx/widgets/ByteMonitorRepresentation.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,5 +447,14 @@ public void updateChanges()
447447
}
448448
}
449449
}
450+
451+
if (jfx_node != null) {
452+
jfx_node.layout();
453+
}
454+
for (Label label : labels) {
455+
if (label != null) {
456+
label.layout();
457+
}
458+
}
450459
}
451460
}

0 commit comments

Comments
 (0)