summaryrefslogtreecommitdiff
path: root/src/projManagement/openProject.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/projManagement/openProject.py')
-rw-r--r--src/projManagement/openProject.py6
1 files changed, 4 insertions, 2 deletions
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()