diff options
Diffstat (limited to 'src/projManagement')
-rw-r--r-- | src/projManagement/openKicad.pyc | bin | 1189 -> 0 bytes | |||
-rw-r--r-- | src/projManagement/openProject.py | 6 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/projManagement/openKicad.pyc b/src/projManagement/openKicad.pyc Binary files differdeleted file mode 100644 index 04f934d3..00000000 --- a/src/projManagement/openKicad.pyc +++ /dev/null diff --git a/src/projManagement/openProject.py b/src/projManagement/openProject.py index a5342901..97e851e8 100644 --- a/src/projManagement/openProject.py +++ b/src/projManagement/openProject.py @@ -33,8 +33,10 @@ class OpenProjectInfo(QtGui.QWidget): self.obj_validation = Validation() def body(self): - self.projDir = QtGui.QFileDialog.getExistingDirectory() - + self.obj_Appconfig = Appconfig() + self.openDir = self.obj_Appconfig.default_workspace["workspace"] + #print "default workspace is now 1", self.openDir + self.projDir=QtGui.QFileDialog.getExistingDirectory(self,"open",self.openDir) if self.obj_validation.validateOpenproj(self.projDir) == True: print "Pass open project test" self.obj_Appconfig = Appconfig() |