Merge pull request #5441 from timntorres/add-5433-avoid-sending-size-option

Add option to avoid sending size between interfaces.
This commit is contained in:
AUTOMATIC1111
2022-12-10 11:07:16 +03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -122,8 +122,7 @@ def run_bind():
if send_generate_info and paste_fields[tab]["fields"] is not None:
if send_generate_info in paste_fields:
paste_field_names = ['Prompt', 'Negative prompt', 'Steps', 'Face restoration', 'Size-1', 'Size-2'] + (["Seed"] if shared.opts.send_seed else [])
paste_field_names = ['Prompt', 'Negative prompt', 'Steps', 'Face restoration'] + (['Size-1', 'Size-2'] if shared.opts.send_size else []) + (["Seed"] if shared.opts.send_seed else [])
button.click(
fn=lambda *x: x,
inputs=[field for field, name in paste_fields[send_generate_info]["fields"] if name in paste_field_names],