From 9aa5e0ca9f54995428b9a32145e8e9f044da4d20 Mon Sep 17 00:00:00 2001 From: Dilan Boskan Date: Wed, 18 Nov 2020 17:22:08 +0100 Subject: [PATCH] Fixed issue #28 --- VocalRemover.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VocalRemover.py b/VocalRemover.py index be2bbd5..b138e84 100644 --- a/VocalRemover.py +++ b/VocalRemover.py @@ -37,7 +37,7 @@ os.chdir(base_path) # Change the current working directory to the base path instrumentalModels_dir = os.path.join(base_path, 'models') stackedModels_dir = os.path.join(base_path, 'models') -logo_path = os.path.join(base_path, 'img', 'UVR-banner.png') +logo_path = os.path.join(base_path, 'img', 'UVR-logo.png') refresh_path = os.path.join(base_path, 'img', 'refresh.png') DEFAULT_DATA = { 'export_path': '', @@ -185,9 +185,9 @@ def drop(event, accept_mode: str = 'files'): root.exportPath_var.set(path) elif accept_mode == 'files': # Clean path text and set path to the list of paths - path = path[:-1] path = path.replace('{', '') path = path.split('} ') + path[-1] = path[-1].replace('}', '') # Set Variables root.inputPaths = path root.inputPathsEntry_var.set('; '.join(path))