From 1b879259a440f0dc43ca7dd87bdc199ea38f27b0 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Thu, 21 Mar 2019 18:07:00 -0500 Subject: [PATCH] Fix #444 Update default INITIAL_FOLDER_IN_DIALOGS to use '/' as it is most likely available on most unsuppored platforms. --- qt/platform.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qt/platform.py b/qt/platform.py index 3c149878..6d30f7fd 100644 --- a/qt/platform.py +++ b/qt/platform.py @@ -23,4 +23,5 @@ elif ISOSX: elif ISLINUX: INITIAL_FOLDER_IN_DIALOGS = '/' else: - pass # unsupported platform + # unsupported platform, however '/' is a good guess for a path which is available + INITIAL_FOLDER_IN_DIALOGS = '/'