mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-12-04 21:21:06 -05:00
Increased minimum list watcher size
This commit is contained in:
parent
8c0a53054a
commit
7ea4f248a7
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue