<@U6RCXRXJB> The reason is that the label builder ...
# tornadofx
e
@devanand The reason is that the label builder automatically adds itself to the migpane when you call
label()
, and then you add it again with the add command from
MigPane
. It would work if you call
add(Label("Hello world"),"wrap")
, ie Label with capital L, so you construct a Label instance instead of using the TornadoFX builder. Let me think about a way to get the best of both worlds.