Merge pull request #12 from anoshenko/bug-fixes/fix-tabslayout-remove-view

Fixed bug while removing child from TabsLayout
This commit is contained in:
Alexei Anoshenko 2025-08-05 13:11:41 +03:00 committed by GitHub
commit 5cb3841cf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -475,6 +475,7 @@ func (tabsLayout *tabsLayoutData) RemoveView(index int) View {
} else if newCurrent != oldCurrent {
tabsLayout.setRaw(Current, newCurrent)
}
return view
}
return nil