Using forward slashes when storing file paths in preferences
This commit is contained in:
parent
e61b5a385c
commit
97796503df
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ if s:
|
|||
else:
|
||||
|
||||
folderDialog = QtGui.QFileDialog.getExistingDirectory(None,QtGui.QApplication.translate("PartsLibrary", "Location of your existing Parts library"))
|
||||
param.SetString('destination',folderDialog)
|
||||
param.SetString('destination',folderDialog.replace("\\","/")) # forward slashes apparently work on windows too
|
||||
LIBRARYPATH = param.GetString('destination')
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue