1
NGUI 3 Documentation / Re: UIPopupList
« on: March 05, 2014, 06:02:30 AM »
I was having the same problem as Messu and I solved the situation by making some changes in the UIPopupList.cs
Line 683:
Line 700:
I only tested with bitmap font, and I didn't made an exhaustive examination to the UIPopupList.cs, so I'm not sure that it is 100% bulletproof, but so far, so good.
Line 683:
- x = Mathf.Max(x, lbl.printedSize.x * dynScale);
Line 700:
- x = Mathf.Max(x, bounds.size.x - (bgPadding.x + padding.x) * 2f);
I only tested with bitmap font, and I didn't made an exhaustive examination to the UIPopupList.cs, so I'm not sure that it is 100% bulletproof, but so far, so good.

