diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-05-18 17:25:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 17:25:32 +0000 |
commit | 57275da90379ae78232944e7cf181a55ed7c1b57 (patch) | |
tree | a0f0a8e7b14ca65df51f27360a79bd0d6b64ece3 /modules/ui.py | |
parent | 63c02314ccad8aaed853cf5b17e79c4a32d14657 (diff) | |
download | stable-diffusion-webui-gfx803-57275da90379ae78232944e7cf181a55ed7c1b57.tar.gz stable-diffusion-webui-gfx803-57275da90379ae78232944e7cf181a55ed7c1b57.tar.bz2 stable-diffusion-webui-gfx803-57275da90379ae78232944e7cf181a55ed7c1b57.zip |
Reorder variable assignment
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 02596757..4d1b9078 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -513,6 +513,8 @@ def create_ui(): with FormGroup(elem_id="txt2img_script_container"):
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):
getattr(inp, evt)(
fn=calc_resolution_hires,
@@ -528,7 +530,6 @@ def create_ui(): 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')
for input in hr_resolution_preview_inputs[1:]:
update_resolution_hires_input(input, 'release')
|