Hi ArenMook,
When using the UIPopupList, we end up with buttons that are way too large (currently using SciFi Font - Normal, Font Size 80).
The problem seems to be in UIPopupList.cs, "public void Show ()", here:
x = Mathf.Max(x, (max.x - min.x) * dynScale - (bgPadding.x + padding.x) * 2f);
It seems like
dynScale should not be used here since min/max already used the proper rendered size of the text.
Removing dynScale makes our button fit the text perfectly.
Could you confirm that this is the proper fix? We are using the latest version of NGUI (3.8.2).
Thanks!