I have a 3 tab view using UIToggleObjects. The first toggle button has an true initial state, the other two are false. When the view awakens I see the first and second tab overlapping.
I was able to fix the issue with this hackish fix.
public void Toggle ()
{
bool val = UIToggle.current.value;
// hackish fix to get my tab view to work
if (!val && IgnoreIfFalse)
return;
if (enabled)
{
for (int i = 0; i < activate.Count; ++i)
Set(activate, val);
for (int i = 0; i < deactivate.Count; ++i)
Set(deactivate, !val);
}
}