mirror of
https://github.com/openvinotoolkit/stable-diffusion-webui.git
synced 2024-12-14 06:28:12 +03:00
fix broken resolution detection when pasting parameters with old hires fix enabled
This commit is contained in:
parent
b1d976dca2
commit
3fe9e9e54d
@ -198,10 +198,10 @@ def restore_old_hires_fix_params(res):
|
||||
firstpass_height = res.get('First pass size-2', None)
|
||||
|
||||
if shared.opts.use_old_hires_fix_width_height:
|
||||
hires_width = int(res.get("Hires resize-1", None))
|
||||
hires_height = int(res.get("Hires resize-2", None))
|
||||
hires_width = int(res.get("Hires resize-1", 0))
|
||||
hires_height = int(res.get("Hires resize-2", 0))
|
||||
|
||||
if hires_width is not None and hires_height is not None:
|
||||
if hires_width and hires_height:
|
||||
res['Size-1'] = hires_width
|
||||
res['Size-2'] = hires_height
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user