`root.header.items.add(0, Label("OnTrack").addClas...
# tornadofx
e
root.header.items.add(0, Label("OnTrack").addClass(Styles.appTitle))
could be
root.header.label("OnTrack").addClass(Styles.appTitle)
n
edvin: No that wouldn't work, because I want to add the
Label
at the beginning and not at the end 😉
e
@nimakro Ah, of course. Sorry.
n
@edvin No problem 😉