mirror of
https://github.com/Anjok07/ultimatevocalremovergui.git
synced 2025-02-23 05:29:02 +01:00
Fixed Save To not working when Model Test Mode is not checked
This commit is contained in:
parent
8263598e8a
commit
925086d19a
@ -372,13 +372,12 @@ def main(window: tk.Wm, text_widget: tk.Text, button_widget: tk.Button, progress
|
||||
button_widget.configure(state=tk.DISABLED) # Disable Button
|
||||
|
||||
models, devices = load_models()
|
||||
folder_path = data["export_path"]
|
||||
modelFolderName = determineModelFolderName()
|
||||
if modelFolderName:
|
||||
folder_path = os.path.join(data["export_path"], modelFolderName)
|
||||
if not os.path.isdir(folder_path):
|
||||
os.mkdir(folder_path)
|
||||
else:
|
||||
folder_path = ''
|
||||
|
||||
# Determine Loops
|
||||
total_loops = data['stackPasses']
|
||||
|
@ -379,13 +379,12 @@ def main(window: tk.Wm, text_widget: tk.Text, button_widget: tk.Button, progress
|
||||
button_widget.configure(state=tk.DISABLED) # Disable Button
|
||||
|
||||
vocal_remover = VocalRemover(data, text_widget)
|
||||
folder_path = data["export_path"]
|
||||
modelFolderName = determineModelFolderName()
|
||||
if modelFolderName:
|
||||
folder_path = os.path.join(data["export_path"], modelFolderName)
|
||||
if not os.path.isdir(folder_path):
|
||||
os.mkdir(folder_path)
|
||||
else:
|
||||
folder_path = ''
|
||||
|
||||
# Determine Loops
|
||||
total_loops = data['stackPasses']
|
||||
|
Loading…
x
Reference in New Issue
Block a user