<@U78L28DMX> Think of it this way: When you write ...
# tornadofx
e
@amanda.hinchman-dominguez Think of it this way: When you write
override val root = stackpane {..
you are actually calling
this@UIComponent.stackpane()
. Later however, when you inside the stackpane do
hbox {..
for example, you're calling
this@stackpane.hbox
.
👍 1