Fix to Primitive Base to ensure the control is redrawn when it's enabled, resolves #116

release
Simon Jackson 2017-03-06 16:24:47 +00:00
parent cc7c66f9f5
commit 49806ebb44
1 changed files with 6 additions and 0 deletions

View File

@ -212,6 +212,12 @@ namespace UnityEngine.UI.Extensions
#endregion
#region onEnable
protected override void OnEnable()
{
SetAllDirty();
}
#endregion
}
}