mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-03-03 20:44:54 +08:00
Merge pull request #15555 from light-and-ray/fix_x1_upscalers
fix x1 upscalers
This commit is contained in:
commit
a44ed231c2
@ -57,7 +57,7 @@ class Upscaler:
|
||||
dest_h = int((img.height * scale) // 8 * 8)
|
||||
|
||||
for _ in range(3):
|
||||
if img.width >= dest_w and img.height >= dest_h:
|
||||
if img.width >= dest_w and img.height >= dest_h and scale != 1:
|
||||
break
|
||||
|
||||
if shared.state.interrupted:
|
||||
|
Loading…
Reference in New Issue
Block a user