From 680005c61d0cc46200740f3c43680893a67fbf93 Mon Sep 17 00:00:00 2001 From: CalamitousFelicitousness Date: Tue, 18 Aug 2026 00:32:50 +0100 Subject: [PATCH] fix(framepack): default the vae dropdown to a value it offers The FP VAE dropdown defaulted to Local, which is not among its choices, so the control rendered with an out-of-list value. The decode dispatch treats anything unrecognized as Full, so Full is the value the default already meant. --- modules/framepack/framepack_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/framepack/framepack_ui.py b/modules/framepack/framepack_ui.py index 417716df6..48aa77983 100644 --- a/modules/framepack/framepack_ui.py +++ b/modules/framepack/framepack_ui.py @@ -64,7 +64,7 @@ def create_ui(prompt, negative, styles, _overrides, script_inputs, mp4_fps, mp4_ use_cfgzero = gr.Checkbox(label='FP enable CFGZero', value=False) use_preview = gr.Checkbox(label='FP enable Preview', value=True) attention = gr.Dropdown(label="FP attention", choices=['Default', 'Xformers', 'FlashAttention', 'SageAttention'], value='Default', type='value') - vae_type = gr.Dropdown(label="FP VAE", choices=['Full', 'Tiny', 'Remote'], value='Local', type='value') + vae_type = gr.Dropdown(label="FP VAE", choices=['Full', 'Tiny', 'Remote'], value='Full', type='value') with gr.Column(elem_id='framepack-output-column', scale=2) as _column_output: with gr.Tabs():