mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-04-28 13:29:17 +02:00
Invert the logic - show only the filtered image by default
This commit is contained in:
parent
65b2c056c6
commit
d21c0bfc18
@ -307,7 +307,7 @@
|
|||||||
<option value="RealESRGAN_x4plus_anime_6B">RealESRGAN_x4plus_anime_6B</option>
|
<option value="RealESRGAN_x4plus_anime_6B">RealESRGAN_x4plus_anime_6B</option>
|
||||||
</select>
|
</select>
|
||||||
</li>
|
</li>
|
||||||
<li><input id="show_only_filtered_image" name="show_only_filtered_image" type="checkbox"> <label for="show_only_filtered_image">Show only the corrected/upscaled image</label></li>
|
<li><input id="show_only_filtered_image" name="show_only_filtered_image" type="checkbox" checked> <label for="show_only_filtered_image">Show only the corrected/upscaled image</label></li>
|
||||||
<br/>
|
<br/>
|
||||||
<li><label for="seed">Seed:</label> <input id="seed" name="seed" size="10" value="30000"> <input id="random_seed" name="random_seed" type="checkbox" checked> <label for="random_seed">Random Image</label></li>
|
<li><label for="seed">Seed:</label> <input id="seed" name="seed" size="10" value="30000"> <input id="random_seed" name="random_seed" type="checkbox" checked> <label for="random_seed">Random Image</label></li>
|
||||||
<li><label for="num_outputs_total">Number of images to make:</label> <input id="num_outputs_total" name="num_outputs_total" value="1" size="4"> <label for="num_outputs_parallel">Generate in parallel:</label> <input id="num_outputs_parallel" name="num_outputs_parallel" value="1" size="4"> (images at once)</li>
|
<li><label for="num_outputs_total">Number of images to make:</label> <input id="num_outputs_total" name="num_outputs_total" value="1" size="4"> <label for="num_outputs_parallel">Generate in parallel:</label> <input id="num_outputs_parallel" name="num_outputs_parallel" value="1" size="4"> (images at once)</li>
|
||||||
@ -515,7 +515,7 @@ function isUpscalingEnabled() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isShowOnlyFilteredImageEnabled() {
|
function isShowOnlyFilteredImageEnabled() {
|
||||||
return getLocalStorageBoolItem(SHOW_ONLY_FILTERED_IMAGE_KEY, false)
|
return getLocalStorageBoolItem(SHOW_ONLY_FILTERED_IMAGE_KEY, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
function isSaveToDiskEnabled() {
|
function isSaveToDiskEnabled() {
|
||||||
|
Loading…
Reference in New Issue
Block a user