From 8f4429df8e950d689dc612df8bbe63a07edeaa72 Mon Sep 17 00:00:00 2001 From: jeong jinmyeong Date: Sun, 14 Jan 2024 05:38:17 +0900 Subject: [PATCH] solve conflicting ui labels in hdr conflicting ui label caused loading from ui_config.json duplicate, and I wanted to solve that. --- modules/ui_sections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui_sections.py b/modules/ui_sections.py index d33190c59..e037e13c6 100644 --- a/modules/ui_sections.py +++ b/modules/ui_sections.py @@ -130,7 +130,7 @@ def create_advanced_inputs(tab): with FormRow(): hdr_maximize = gr.Checkbox(label='HDR maximize', value=False, elem_id=f"{tab}_hdr_maximize") hdr_max_center = gr.Slider(minimum=0.0, maximum=2.0, step=0.1, value=0.6, label='Center', elem_id=f"{tab}_hdr_max_center") - hdr_max_boundry = gr.Slider(minimum=0.5, maximum=2.0, step=0.1, value=1.0, label='Range', elem_id=f"{tab}_hdr_max_boundry") + hdr_max_boundry = gr.Slider(minimum=0.5, maximum=2.0, step=0.1, value=1.0, label='Max Range', elem_id=f"{tab}_hdr_max_boundry") return cfg_scale, clip_skip, image_cfg_scale, diffusers_guidance_rescale, diffusers_sag_scale, full_quality, restore_faces, tiling, hdr_clamp, hdr_boundary, hdr_threshold, hdr_center, hdr_channel_shift, hdr_full_shift, hdr_maximize, hdr_max_center, hdr_max_boundry