diff options
author | gnieboer <gnieboer@corpcomm.net> | 2016-10-20 21:47:15 -0400 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-10-21 11:51:54 -0700 |
commit | ff8d4abb2973b487f94f2ff0dcacda53a51a2093 (patch) | |
tree | 6f8adf0031f8a092462b2637fba90e13de846436 | |
parent | bc4e0b3ba71250d92a7f45a036bcae7f5589e1a6 (diff) |
grc: change default filepath to documents dir for windows only
-rw-r--r-- | grc/gui/Constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Constants.py b/grc/gui/Constants.py index 022564cd77..6a7b54dffa 100644 --- a/grc/gui/Constants.py +++ b/grc/gui/Constants.py @@ -23,7 +23,7 @@ from ..core.Constants import * # default path for the open/save dialogs -DEFAULT_FILE_PATH = os.getcwd() +DEFAULT_FILE_PATH = os.getcwd() if os.name != 'nt' else os.path.expanduser("~/Documents") # file extensions IMAGE_FILE_EXTENSION = '.png' |