I can't seem to get ScrollPane to work. Does this ...
# tornadofx
p
I can't seem to get ScrollPane to work. Does this make sense at all? Should I use
content =
or
add(..)
? It is not showing the scrollbar.
Copy code
class MyView : View() {
    override val root = scrollpane {

        hbarPolicy = ScrollBarPolicy.ALWAYS       

        content = someContent
    }
}