Q: Is it a no-no to have a construct like this? ``...
# tornadofx
p
Q: Is it a no-no to have a construct like this?
Copy code
override val root = scrollpane {
        stackpane {
            group {
                rectangle {

                }
            }

            group {

            }
        }
    }
Specifically the second
group
- just by adding it the coordinate system of the first
group
is corrupted (item placed at 10,10 ends up at 0,0) Let me answer that myself: It is not. The problem lies elsewhere