From 466e1bbb45a0094a25f69e47769b6a50e6629165 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Fri, 15 Sep 2017 11:39:49 +0200 Subject: [PATCH] start directory for file chooser is ~/Desktop --- arduino_timetable/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino_timetable/gui.py b/arduino_timetable/gui.py index 8af8f34..df901c2 100644 --- a/arduino_timetable/gui.py +++ b/arduino_timetable/gui.py @@ -275,7 +275,7 @@ class Application(tk.Frame): ''' selecting a new excel file with scheduled_commands ''' # open the file selection dialog opts = { - 'initialdir': '~/', + 'initialdir': '~/Desktop', 'filetypes': [('Excel Files', '.xlsx')], 'multiple': False} excel_file = tk.filedialog.askopenfilename(**opts)