diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-01-22 18:46:44 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-01-22 18:46:44 -0300 |
commit | 2cb7443595a91857a4d037f2385ade5c8385d6a4 (patch) | |
tree | fba32677ca3d820dec71071512d583a3c6237d72 /src/leap/bitmask/gui/wizard.py | |
parent | fd1a1d3b6d1492e3746ba43591a8e458eb33b592 (diff) | |
parent | 1221160b11a32164c966cb1130bb3e0d74866d98 (diff) |
Merge remote-tracking branch 'refs/remotes/ivan/feature/4488_use-existing-provider-by-default' into develop
Diffstat (limited to 'src/leap/bitmask/gui/wizard.py')
-rw-r--r-- | src/leap/bitmask/gui/wizard.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/leap/bitmask/gui/wizard.py b/src/leap/bitmask/gui/wizard.py index b99e8db6..d5940c52 100644 --- a/src/leap/bitmask/gui/wizard.py +++ b/src/leap/bitmask/gui/wizard.py @@ -205,6 +205,10 @@ class Wizard(QtGui.QWizard): random.shuffle(pinned) # don't prioritize alphabetically self.ui.cbProviders.addItems(pinned) + # We have configured providers, so by default we select the + # 'Use existing provider' option. + self.ui.rbExistingProvider.setChecked(True) + def get_domain(self): return self._domain |