From 1f5bcd87ff741d022526213b091ef5ad5a110ab0 Mon Sep 17 00:00:00 2001 From: RVC-Boss <129054828+RVC-Boss@users.noreply.github.com> Date: Sun, 21 Jan 2024 22:48:33 +0800 Subject: [PATCH] Add files via upload --- tools/subfix_webui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/subfix_webui.py b/tools/subfix_webui.py index 0e6585e..4985eef 100644 --- a/tools/subfix_webui.py +++ b/tools/subfix_webui.py @@ -79,6 +79,7 @@ def b_change_index(index, batch): def b_next_index(index, batch): + b_save_file() if (index + batch) <= g_max_json_index: return index + batch , *b_change_index(index + batch, batch) else: @@ -86,6 +87,7 @@ def b_next_index(index, batch): def b_previous_index(index, batch): + b_save_file() if (index - batch) >= 0: return index - batch , *b_change_index(index - batch, batch) else: