<@U13A9PZC0> Correct, every object created or look...
# tornadofx
e
@gtnarg Correct, every object created or looked up within the context of a scope will belong to that scope only, unless you call
inject(someOtherScope)
or
find(viewtype, someOtherScope)
. There is a "global/default" scope available called
DefaultScope
you can use if you want to access "global singletons" from within another scope.