edvin
01/27/2017, 3:33 PMhastebrot
01/27/2017, 3:34 PMedvin
01/27/2017, 3:34 PMedvin
01/27/2017, 3:34 PMedvin
01/27/2017, 3:35 PMedvin
01/27/2017, 3:35 PMhastebrot
01/27/2017, 3:36 PMedvin
01/27/2017, 3:38 PMhastebrot
01/27/2017, 3:39 PMhastebrot
01/27/2017, 3:40 PMhastebrot
01/27/2017, 3:41 PMedvin
01/27/2017, 3:42 PMedvin
01/27/2017, 3:42 PMhastebrot
01/27/2017, 3:43 PMedvin
01/27/2017, 3:43 PMedvin
01/27/2017, 3:43 PMhastebrot
01/27/2017, 3:48 PMfind()
uses a DefaultScope
and Scope
has deregister()
. Do we need to deregister the scopes?edvin
01/27/2017, 3:52 PMhastebrot
01/27/2017, 4:34 PMhastebrot
01/27/2017, 4:35 PMhastebrot
01/27/2017, 4:37 PMView
in @Before
hastebrot
01/27/2017, 4:38 PMhastebrot
01/27/2017, 4:41 PMFX.kt
is the only source file that contains global state variables (DefaultScope
, FX::companion
)?hastebrot
01/27/2017, 4:47 PMPropertyHolder.selectionScope
in CSS.kt
. but I think there is no need to watch out for it. also DefaultErrorHandler.filter
maybe needs to be reset. Rest.ongoingRequests
, Workspace.activeWorkspaces
.edvin
01/27/2017, 7:35 PMsreich
01/27/2017, 9:54 PMRuckus
01/27/2017, 10:03 PMRuckus
01/27/2017, 10:12 PMclass MainStyle : Stylesheet() {
companion object {
val base by cssproperty<Color>("-fx-base")
}
init {
root {
base.value = Color.BLACK
}
}
}
will get you most of the way there.Ruckus
01/27/2017, 10:16 PMstyle { unsafe("-fx-base", raw("black")) }
to the root of your view will do the same thing)Ruckus
01/27/2017, 10:20 PM