summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/wizard.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2014-01-22 18:46:44 -0300
committerTomás Touceda <chiiph@leap.se>2014-01-22 18:46:44 -0300
commit2cb7443595a91857a4d037f2385ade5c8385d6a4 (patch)
treefba32677ca3d820dec71071512d583a3c6237d72 /src/leap/bitmask/gui/wizard.py
parentfd1a1d3b6d1492e3746ba43591a8e458eb33b592 (diff)
parent1221160b11a32164c966cb1130bb3e0d74866d98 (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.py4
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