From 2a6b4f5245a8232563e54758d2c025a6a0b1df0c Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sun, 1 Mar 2026 01:07:09 +0100 Subject: [PATCH] Add mode integer field above sequence number in batch cards Co-Authored-By: Claude Opus 4.6 --- tab_batch_ng.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tab_batch_ng.py b/tab_batch_ng.py index b02fced..397767f 100644 --- a/tab_batch_ng.py +++ b/tab_batch_ng.py @@ -244,7 +244,7 @@ def render_batch_processor(state: AppState): lora_keys = ['lora 1 high', 'lora 1 low', 'lora 2 high', 'lora 2 low', 'lora 3 high', 'lora 3 low'] standard_keys = { - 'name', 'general_prompt', 'general_negative', 'current_prompt', 'negative', 'prompt', + 'name', 'mode', 'general_prompt', 'general_negative', 'current_prompt', 'negative', 'prompt', 'seed', 'cfg', 'camera', 'flf', KEY_SEQUENCE_NUMBER, 'frame_to_skip', 'end_frame', 'transition', 'vace_length', 'input_a_frames', 'input_b_frames', 'reference switch', 'vace schedule', @@ -431,6 +431,9 @@ def _render_sequence_card(i, seq, batch_list, data, file_path, state, 'w-full q-mt-sm').props('outlined rows=2') with splitter.after: + # Mode + dict_number('Mode', seq, 'mode').props('outlined').classes('w-full') + # Sequence number sn_label = ( f'Seq Number (Sub #{parent_of(seq_num)}.{sub_index_of(seq_num)})'