From b25814f756d3f6872ae46fc9be4c20513e397635 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 5 Jan 2026 12:51:55 +0100 Subject: [PATCH] Update app.py --- app.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 8fd194d..8cae27a 100644 --- a/app.py +++ b/app.py @@ -12,6 +12,7 @@ from tab_batch import render_batch_processor from tab_timeline import render_timeline_tab from tab_timeline_wip import render_timeline_wip from tab_comfy import render_comfy_monitor +from tab_raw import render_raw_editor # <--- NEW IMPORT # ========================================== # 1. PAGE CONFIGURATION @@ -174,12 +175,13 @@ if selected_file_name: st.title(f"Editing: {selected_file_name}") # --- CONTROLLED NAVIGATION (REPLACES ST.TABS) --- - # Using radio buttons allows us to change 'active_tab_name' programmatically above. + # Added "Raw Editor" to the list tabs_list = [ "๐Ÿ“ Single Editor", "๐Ÿš€ Batch Processor", "๐Ÿ•’ Timeline", "๐Ÿงช Interactive Timeline", + "๐Ÿ’ป Raw Editor", "๐Ÿ”Œ Comfy Monitor" ] @@ -209,6 +211,9 @@ if selected_file_name: elif current_tab == "๐Ÿงช Interactive Timeline": render_timeline_wip(data, file_path) + + elif current_tab == "๐Ÿ’ป Raw Editor": + render_raw_editor(data, file_path) elif current_tab == "๐Ÿ”Œ Comfy Monitor": - render_comfy_monitor() + render_comfy_monitor() \ No newline at end of file