diff options
Diffstat (limited to 'src/configuration/Appconfig.py')
-rw-r--r-- | src/configuration/Appconfig.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index d8156ab1..b9b619b1 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -18,6 +18,8 @@ from PyQt4 import QtGui +import os + class Appconfig(QtGui.QWidget): @@ -37,6 +39,12 @@ class Appconfig(QtGui.QWidget): self.app_width = 600 self.app_heigth = 400 + #Workspace detail + self.workspace_text = '''ecSim stores your project in a folder called a workspace. You can choose a different workspace folder to use for this session.''' + #Home directory + self.home = os.path.expanduser("~")+"/ecSim-Workspace" + self.default_workspace = {"workspace":self.home} + |