This commit is contained in:
Cmdr McDonald
2017-01-25 19:44:36 +00:00
parent 351b084ce9
commit 89f2273b5d
4 changed files with 9 additions and 2 deletions

View File

@@ -545,7 +545,7 @@ export default class Module {
getClip() {
// Clip size is always rounded up
let result = this._getModifiedValue('clip');
if (result) { result = Math.ceil(result) };
if (result) { result = Math.ceil(result); }
return result;
}