mirror of https://github.com/anoshenko/rui.git
Fixing
This commit is contained in:
parent
61e1152f33
commit
fd6bf1ef44
|
|
@ -75,6 +75,13 @@ func (customView *CustomViewData) setRaw(tag PropertyName, value any) {
|
|||
customView.superView.setRaw(tag, value)
|
||||
}
|
||||
|
||||
func (customView *CustomViewData) setContent(value any) bool {
|
||||
if container, ok := customView.superView.(ViewsContainer); ok {
|
||||
return container.setContent(value)
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (customView *CustomViewData) setAll(props map[PropertyName]any) {
|
||||
customView.superView.setAll(props)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue