From 62f9acd885635580798863f375bfa82f0081f5ef Mon Sep 17 00:00:00 2001 From: jaortizco Date: Wed, 20 Nov 2024 16:59:05 +0900 Subject: [PATCH] chore: update default directory The default directory is now the home folder rather than the current working directory. --- src/eisconv/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eisconv/main_window.py b/src/eisconv/main_window.py index db78847..529be39 100644 --- a/src/eisconv/main_window.py +++ b/src/eisconv/main_window.py @@ -26,7 +26,7 @@ def __init__(self) -> None: self.setupUi(self) self.data_imported = False - self.current_directory = Path.cwd() + self.current_directory = Path.home() # Set window self.set_icons()