diff options
author | xoher | 2015-06-29 15:14:04 +0530 |
---|---|---|
committer | xoher | 2015-06-29 15:14:04 +0530 |
commit | 6d0631e034026b958437456ae461f21ba8429813 (patch) | |
tree | 25611e8878b6c0131128eede5916661c71d4aaf9 /src/frontEnd/Workspace.py | |
parent | ebe5526305045c2b33e0810ef76324c6ae3b2ffb (diff) | |
download | eSim-6d0631e034026b958437456ae461f21ba8429813.tar.gz eSim-6d0631e034026b958437456ae461f21ba8429813.tar.bz2 eSim-6d0631e034026b958437456ae461f21ba8429813.zip |
Logo bug fixed,and Splash screen waits for one second after workspace window
Diffstat (limited to 'src/frontEnd/Workspace.py')
-rw-r--r-- | src/frontEnd/Workspace.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/frontEnd/Workspace.py b/src/frontEnd/Workspace.py index 8f2b6c96..cd44dd71 100644 --- a/src/frontEnd/Workspace.py +++ b/src/frontEnd/Workspace.py @@ -17,7 +17,7 @@ #=============================================================================== from PyQt4 import QtCore, QtGui from configuration.Appconfig import Appconfig - +import time import os @@ -80,6 +80,7 @@ class Workspace(QtGui.QWidget): self.obj_appconfig.print_info('Default workspace selected : ' + self.obj_appconfig.default_workspace["workspace"]) self.close() var_appView.show() + time.sleep(1) var_appView.splash.close() @@ -114,6 +115,7 @@ class Workspace(QtGui.QWidget): self.imp_var=1 self.close() var_appView.show() + time.sleep(1) var_appView.splash.close() |