From 01a9bfeb938b6f8c1abd7fcd406c83c3b64181ff Mon Sep 17 00:00:00 2001 From: Mikalai Turankou Date: Tue, 5 Aug 2025 12:17:26 +0300 Subject: [PATCH] Fixed bug while removing child from TabsLayout --- tabsLayout.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tabsLayout.go b/tabsLayout.go index 20c7a36..1578c5c 100644 --- a/tabsLayout.go +++ b/tabsLayout.go @@ -475,6 +475,7 @@ func (tabsLayout *tabsLayoutData) RemoveView(index int) View { } else if newCurrent != oldCurrent { tabsLayout.setRaw(Current, newCurrent) } + return view } return nil