The container actually creates a propagator now lmao

This commit is contained in:
Sasha Koshka 2023-03-04 01:27:16 -05:00
parent 252433f13d
commit be286fa86c

View File

@ -37,6 +37,7 @@ func NewContainer (layout layouts.Layout) (element *Container) {
element = &Container { }
element.theme.Case = theme.C("basic", "container")
element.Core, element.core = core.NewCore(element.redoAll)
element.Propagator = core.NewPropagator(element)
element.SetLayout(layout)
return
}