From 3f6bf25f2ed5fc5626c46a4218cc1d627ec401c2 Mon Sep 17 00:00:00 2001 From: physcik Date: Fri, 27 Mar 2026 13:52:07 +0500 Subject: String() error fix --- engine/UI/FlexElement.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engine/UI/FlexElement.go') diff --git a/engine/UI/FlexElement.go b/engine/UI/FlexElement.go index b8107ee..1c307da 100644 --- a/engine/UI/FlexElement.go +++ b/engine/UI/FlexElement.go @@ -92,7 +92,7 @@ func (base *layoutCache) CalculateRowsLocations (rows []UIElement, WeightToPixel func (base layoutCache) String() string { var outp, jsonErr = json.Marshal(base) if jsonErr != nil { - return fmt.Sprintf("Failed to parse settings: %s", jsonErr.Error()) + return fmt.Sprintf("Failed to parse layour cache: %s", jsonErr.Error()) } return string(outp) } -- cgit v1.3