Update BlockArg.as

This commit is contained in:
doyousketch2 2014-06-25 14:08:57 -04:00
parent d681a5606a
commit 0a1a9924e0

View file

@ -160,7 +160,7 @@ public class BlockArg extends Sprite {
if (!label && (value is Number) && ((value - epsilon) is int)) {
// Append '.0' to numeric values that are exactly epsilon
// greather than an integer. See comment in textChanged().
// greater than an integer. See comment in textChanged().
field.text = (value - epsilon) + '.0';
}
textChanged(null);