Fixed error with canceling out of Select Destination

This commit is contained in:
codemann8
2024-01-26 22:39:00 -06:00
parent 893947f89b
commit d8f33d6b8b

View File

@@ -202,7 +202,7 @@ def bottom_frame(self, parent, args=None):
def select_output():
from tkinter import filedialog
folder_selected = filedialog.askdirectory()
if folder_selected is not None:
if folder_selected is not None and folder_selected != '':
args.outputpath = parent.settings["outputpath"] = folder_selected
## Output Button