From fd6bf1ef447e5587945bfed02d2ba0b3f252d974 Mon Sep 17 00:00:00 2001 From: Alexei Anoshenko Date: Fri, 4 Sep 2026 20:49:56 +0300 Subject: [PATCH] Fixing --- customView.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/customView.go b/customView.go index 04dffb2..753fe87 100644 --- a/customView.go +++ b/customView.go @@ -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) }