type correction for minimum value and maximum value

Setting type is float, so the min/maximum_value should also have a float value rather than a string
This commit is contained in:
HellAholic 2025-09-15 06:46:17 +02:00 committed by GitHub
parent 4a9fcd1d4e
commit 326a2f911d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -491,8 +491,8 @@
"label": "Print Time Estimation Factor",
"description": "Multiplier for adjusting print time estimates. 100% shows original estimate. Higher values indicate longer actual print times.",
"default_value": 100,
"minimum_value": "1",
"maximum_value": "1000",
"minimum_value": 1,
"maximum_value": 1000,
"type": "float",
"unit": "%",
"settable_per_mesh": false,
@ -9616,4 +9616,4 @@
}
}
}
}
}