diff options
| author | kali <kali@leap.se> | 2013-01-09 01:02:28 +0900 | 
|---|---|---|
| committer | kali <kali@leap.se> | 2013-01-09 01:02:28 +0900 | 
| commit | c6ab7134f69eea59b0f2f44016d7fc4f2fbfe359 (patch) | |
| tree | 260f8d10935d42c8acd531130ca13c5293304a1c /src | |
| parent | 3c19346b5189e993e982aabe8ded2d20c0e0bcd6 (diff) | |
icon shows when wizard ends
Diffstat (limited to 'src')
| -rw-r--r-- | src/leap/baseapp/mainwindow.py | 15 | 
1 files changed, 13 insertions, 2 deletions
| diff --git a/src/leap/baseapp/mainwindow.py b/src/leap/baseapp/mainwindow.py index b9a451ac..b1e5bccf 100644 --- a/src/leap/baseapp/mainwindow.py +++ b/src/leap/baseapp/mainwindow.py @@ -100,7 +100,7 @@ class LeapWindow(QtGui.QMainWindow,              self.startStopButton.clicked.connect(                  lambda: self.start_or_stopVPN())          self.start_eipconnection.connect( -            lambda: self.start_or_stopVPN()) +            self.do_start_eipconnection)          self.shutdownSignal.connect(              self.cleanupAndQuit)          self.initNetworkChecker.connect( @@ -147,9 +147,9 @@ class LeapWindow(QtGui.QMainWindow,          # launch wizard if needed          if need_wizard: +            logger.debug('running first run wizard')              self.launch_first_run_wizard()          else:  # no wizard needed -            logger.debug('running first run wizard')              self.initReady.emit()      def launch_first_run_wizard(self): @@ -174,5 +174,16 @@ class LeapWindow(QtGui.QMainWindow,              self.cleanupAndQuit()      def runchecks_and_eipconnect(self): +        """ +        shows icon and run init checks +        """          self.show_systray_icon()          self.initchecks.begin() + +    def do_start_eipconnection(self): +        """ +        shows icon and init eip connection +        called from the end of wizard +        """ +        self.show_systray_icon() +        self.start_or_stopVPN() | 
