summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrun/providerselect.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-11-12 12:25:11 +0900
committerkali <kali@leap.se>2012-11-12 12:25:11 +0900
commitfe16e62fa83c24d2ef379a3f9e102d336e527656 (patch)
tree53baa59579c2ba15820ae342c693a97518a872ef /src/leap/gui/firstrun/providerselect.py
parent13c4bd9087e4caaf9e440efa210d5762b8aca875 (diff)
cleanup errors on page init and on field change
Diffstat (limited to 'src/leap/gui/firstrun/providerselect.py')
-rw-r--r--src/leap/gui/firstrun/providerselect.py18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/leap/gui/firstrun/providerselect.py b/src/leap/gui/firstrun/providerselect.py
index a20f40b3..3fb76557 100644
--- a/src/leap/gui/firstrun/providerselect.py
+++ b/src/leap/gui/firstrun/providerselect.py
@@ -153,13 +153,27 @@ class SelectProviderPage(QtGui.QWizardPage):
def populateErrors(self):
# XXX could move this to ValidationMixin
+ # with some defaults for the validating fields
+ # (now it only allows one field, manually specified)
#logger.debug('getting errors')
errors = self.wizard().get_validation_error(
self.current_page)
if errors:
- #logger.debug('errors! -> %s', errors)
- self.validationMsg.setText(errors)
+ bad_str = getattr(self, 'bad_string', None)
+ cur_str = self.providerNameEdit.text()
+ showerr = self.validationMsg.setText
+ if bad_str is None:
+ # first time we fall here.
+ # save the current bad_string value
+ self.bad_string = cur_str
+ showerr(errors)
+ else:
+ # not the first time
+ if cur_str == bad_str:
+ showerr(errors)
+ else:
+ showerr('')
def paintEvent(self, event):
"""