diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-03-25 12:00:49 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-03-25 12:00:49 -0300 |
commit | 2c30ffe4ab8a12712735b7f8fef27cd7700eaaae (patch) | |
tree | 5bf3859439ad75610ca683edbb4fb4e826339f7b /src/leap/gui | |
parent | 2b53c03c9acf42b240a57901ae1e6d4046f52fb2 (diff) |
Add windows platform initializer
Diffstat (limited to 'src/leap/gui')
-rw-r--r-- | src/leap/gui/mainwindow.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py index 3f29f957..ca6f1a8b 100644 --- a/src/leap/gui/mainwindow.py +++ b/src/leap/gui/mainwindow.py @@ -31,6 +31,7 @@ from leap.common.check import leap_assert from leap.config.leapsettings import LeapSettings from leap.config.providerconfig import ProviderConfig from leap.crypto.srpauth import SRPAuth +from leap.platform_init.initializers import init_platform from leap.services.eip.vpn import VPN from leap.services.eip.vpnlaunchers import (VPNLauncherException, OpenVPNNotFoundException, @@ -192,6 +193,9 @@ class MainWindow(QtGui.QMainWindow): self._settings = LeapSettings(standalone) self._center_window() + + init_platform() + self._wizard = None self._wizard_firstrun = False if self._first_run(): |