Fix potential issues with the int rounding fix.

This commit is contained in:
comfyanonymous 2024-05-03 05:49:21 -04:00
parent 89d0e9abeb
commit daa92a8ff4
1 changed files with 5 additions and 1 deletions

View File

@ -229,7 +229,11 @@ function createIntWidget(node, inputName, inputData, app, isSeedInput) {
val,
function (v) {
const s = this.options.step / 10;
this.value = Math.round((v - this.options.min) / s) * s + this.options.min;
let sh = this.options.min % s;
if (isNaN(sh)) {
sh = 0;
}
this.value = Math.round((v - sh) / s) * s + sh;
},
config
),