Commit bd877d7b authored by AUTOMATIC's avatar AUTOMATIC

rework #10519

parent 2e006fa5
...@@ -526,14 +526,16 @@ def create_ui(): ...@@ -526,14 +526,16 @@ def create_ui():
hr_resolution_preview_inputs = [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y] hr_resolution_preview_inputs = [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y]
def update_resolution_hires_input(inp, evt): for component in hr_resolution_preview_inputs:
getattr(inp, evt)( event = component.release if isinstance(component, gr.Slider) else component.change
event(
fn=calc_resolution_hires, fn=calc_resolution_hires,
inputs=hr_resolution_preview_inputs, inputs=hr_resolution_preview_inputs,
outputs=[hr_final_resolution], outputs=[hr_final_resolution],
show_progress=False, show_progress=False,
) )
getattr(inp, evt)( event(
None, None,
_js="onCalcResolutionHires", _js="onCalcResolutionHires",
inputs=hr_resolution_preview_inputs, inputs=hr_resolution_preview_inputs,
...@@ -541,10 +543,6 @@ def create_ui(): ...@@ -541,10 +543,6 @@ def create_ui():
show_progress=False, show_progress=False,
) )
update_resolution_hires_input(enable_hr, 'change')
for input in hr_resolution_preview_inputs[1:]:
update_resolution_hires_input(input, 'release')
txt2img_gallery, generation_info, html_info, html_log = create_output_panel("txt2img", opts.outdir_txt2img_samples) txt2img_gallery, generation_info, html_info, html_log = create_output_panel("txt2img", opts.outdir_txt2img_samples)
connect_reuse_seed(seed, reuse_seed, generation_info, dummy_component, is_subseed=False) connect_reuse_seed(seed, reuse_seed, generation_info, dummy_component, is_subseed=False)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment