add semis

This commit is contained in:
Lucas Kellner 2019-04-27 14:02:17 -04:00
parent dd1c04acbf
commit 316b73edcd

View File

@ -105,12 +105,12 @@ class NumberControllerBox extends NumberController {
} }
case 'ArrowUp': case 'ArrowUp':
{ {
_this.setValue(_this.getValue() + _this.__impliedStep) _this.setValue(_this.getValue() + _this.__impliedStep);
break; break;
} }
case 'ArrowDown': case 'ArrowDown':
{ {
_this.setValue(_this.getValue() - _this.__impliedStep) _this.setValue(_this.getValue() - _this.__impliedStep);
break; break;
} }
default: default: