Commit 57275da9 authored by catboxanon's avatar catboxanon Committed by GitHub

Reorder variable assignment

parent 63c02314
...@@ -513,6 +513,8 @@ def create_ui(): ...@@ -513,6 +513,8 @@ def create_ui():
with FormGroup(elem_id="txt2img_script_container"): with FormGroup(elem_id="txt2img_script_container"):
custom_inputs = modules.scripts.scripts_txt2img.setup_ui() custom_inputs = modules.scripts.scripts_txt2img.setup_ui()
hr_resolution_preview_inputs = [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y]
def update_resolution_hires_input(inp, evt): def update_resolution_hires_input(inp, evt):
getattr(inp, evt)( getattr(inp, evt)(
fn=calc_resolution_hires, fn=calc_resolution_hires,
...@@ -528,7 +530,6 @@ def create_ui(): ...@@ -528,7 +530,6 @@ def create_ui():
show_progress=False, show_progress=False,
) )
hr_resolution_preview_inputs = [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y]
update_resolution_hires_input(enable_hr, 'change') update_resolution_hires_input(enable_hr, 'change')
for input in hr_resolution_preview_inputs[1:]: for input in hr_resolution_preview_inputs[1:]:
update_resolution_hires_input(input, 'release') update_resolution_hires_input(input, 'release')
......
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