mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-12-04 21:21:06 -05:00
Fixed costume center button being too far to the right
This commit is contained in:
parent
126e7cdf16
commit
0e44a7389a
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ public class ImagesPart extends UIPart {
|
|||
}
|
||||
|
||||
private function fixlayout():void {
|
||||
var extraSpace:int = Math.max(0, (w - 537) / 3);
|
||||
var extraSpace:int = Math.max(0, (w - 590) / 3);
|
||||
bigSpace = smallSpace + extraSpace;
|
||||
|
||||
newCostumeLabel.x = 7;
|
||||
|
|
Loading…
Reference in a new issue