Merge pull request #12306 from catboxanon/fix/hires-infotext-paste

Only enable hires fix if hires scale or upscaler found in params for infotext paste
This commit is contained in:
AUTOMATIC1111 2023-08-04 11:52:17 +03:00 committed by GitHub
commit 6391128b41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -591,8 +591,8 @@ def create_ui():
(seed_resize_from_h, "Seed resize from-2"),
(toprow.ui_styles.dropdown, lambda d: d["Styles array"] if isinstance(d.get("Styles array"), list) else gr.update()),
(denoising_strength, "Denoising strength"),
(enable_hr, lambda d: "Denoising strength" in d),
(hr_options, lambda d: gr.Row.update(visible="Denoising strength" in d)),
(enable_hr, lambda d: "Denoising strength" in d and ("Hires upscale" in d or "Hires upscaler" in d or "Hires resize-1" in d)),
(hr_options, lambda d: gr.Row.update(visible="Denoising strength" in d and ("Hires upscale" in d or "Hires upscaler" in d or "Hires resize-1" in d))),
(hr_scale, "Hires upscale"),
(hr_upscaler, "Hires upscaler"),
(hr_second_pass_steps, "Hires steps"),