Increase maximum list box auto size width

This commit is contained in:
drdev
2014-01-10 04:36:12 +00:00
parent feaec2eb6d
commit 7274d46865

View File

@@ -90,7 +90,7 @@ public class FList<E> extends SkinnedList<E> {
width = minWidth;
}
else {
int maxWidth = Singletons.getView().getFrame().getWidth() / 2;
int maxWidth = Singletons.getView().getFrame().getWidth() - 50;
if (width > maxWidth) {
width = maxWidth;
}