|
|
@@ -1045,7 +1045,7 @@ function formatAutoStepDelayInputValue(value) {
|
|
|
}
|
|
|
|
|
|
function getRunCountValue() {
|
|
|
- return Math.min(50, Math.max(1, parseInt(inputRunCount.value, 10) || 1));
|
|
|
+ return Math.max(1, parseInt(inputRunCount.value, 10) || 1);
|
|
|
}
|
|
|
|
|
|
function updateFallbackThreadIntervalInputState() {
|