Increased minimum list watcher size

This commit is contained in:
Nathan Dinsmore 2014-05-30 14:06:52 -04:00
parent 8c0a53054a
commit 7ea4f248a7

View file

@ -71,7 +71,8 @@ public class ListWatcher extends Sprite {
frame = new ResizeableFrame(0x949191, 0xC1C4C7, 14, false, 2);
frame.setWidthHeight(50, 100);
frame.showResizer();
frame.minWidth = frame.minHeight = 60;
frame.minWidth = 80;
frame.minHeight = 62;
addChild(frame);
title = createTextField(listName, titleFont);