From d688514d0d3052b4a63133f54d51f4d17e8be81a Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 5 Jul 2025 17:30:54 -0400 Subject: [PATCH] set taesd as default preview type Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 1 + modules/shared.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3256fb16d..4fc2d2423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ *relighting*: automatic background replacement with reglighting so source image fits desired background with optional composite blending available in *img2img or control -> scripts* + - **TAESD** is now default preview type since its the only one that supports most new models - Add **FLUX.1-Kontext-Dev** inpaint workflow - Support **FLUX.1** all-in-one safetensors - Support TAESD preview and remote VAE for **HunyuanDit** diff --git a/modules/shared.py b/modules/shared.py index 0a3588851..da125e982 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -759,7 +759,7 @@ options_templates.update(options_section(('ui', "User Interface"), { options_templates.update(options_section(('live-preview', "Live Previews"), { "show_progress_every_n_steps": OptionInfo(1, "Live preview display period", gr.Slider, {"minimum": 0, "maximum": 32, "step": 1}), - "show_progress_type": OptionInfo("Approximate", "Live preview method", gr.Radio, {"choices": ["Simple", "Approximate", "TAESD", "Full VAE"]}), + "show_progress_type": OptionInfo("TAESD", "Live preview method", gr.Radio, {"choices": ["Simple", "Approximate", "TAESD", "Full VAE"]}), "live_preview_refresh_period": OptionInfo(500, "Progress update period", gr.Slider, {"minimum": 0, "maximum": 5000, "step": 25}), "taesd_variant": OptionInfo(shared_items.sd_taesd_items()[0], "TAESD variant", gr.Dropdown, {"choices": shared_items.sd_taesd_items()}), "taesd_layers": OptionInfo(3, "TAESD decode layers", gr.Slider, {"minimum": 1, "maximum": 3, "step": 1}),