summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/wizard.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-01-22 17:18:08 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-01-22 17:18:08 -0300
commit1221160b11a32164c966cb1130bb3e0d74866d98 (patch)
treee8ccf9c6bcf83d6c1ae48ea374e3379ad48dbb84 /src/leap/bitmask/gui/wizard.py
parent8a05b6fcc913a21ce7b3fa950c63a2ebda76c6f2 (diff)
Select by default the use of an existing provider.
[Closes #4488]
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