This commit is contained in:
Alexei Anoshenko 2026-09-04 20:49:56 +03:00
parent 61e1152f33
commit fd6bf1ef44
1 changed files with 7 additions and 0 deletions

View File

@ -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)
}