From d8f33d6b8bec9a31aeb70126b300c07ad63a1453 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Fri, 26 Jan 2024 22:39:00 -0600 Subject: [PATCH] Fixed error with canceling out of Select Destination --- source/gui/bottom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gui/bottom.py b/source/gui/bottom.py index a91fb518..d50010f2 100644 --- a/source/gui/bottom.py +++ b/source/gui/bottom.py @@ -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