wtf when did this stop defaulting to 1
-1 breaks the slider
This commit is contained in:
parent
462b1d6713
commit
602de50626
1 changed files with 1 additions and 2 deletions
|
@ -124,8 +124,7 @@
|
|||
localStorage.getItem("openoutpaint/settings.canvas-height") || 2048;
|
||||
maxSteps.value =
|
||||
localStorage.getItem("openoutpaint/settings.max-steps") || 70;
|
||||
minCfg.value =
|
||||
localStorage.getItem("openoutpaint/settings.min-cfg") || -1;
|
||||
minCfg.value = localStorage.getItem("openoutpaint/settings.min-cfg") || 1;
|
||||
maxCfg.value =
|
||||
localStorage.getItem("openoutpaint/settings.max-cfg") || 30;
|
||||
let _enable_dishonesty =
|
||||
|
|
Loading…
Reference in a new issue