Fix #983478 ([Enhancement] Regex Builder Wizard: Bind TEST button to regex entry field)

This commit is contained in:
Kovid Goyal 2012-04-17 10:58:40 +05:30
parent dd2d76a8df
commit e9fcb54ffb

View File

@ -42,6 +42,7 @@ class RegexBuilder(QDialog, Ui_RegexBuilder):
self.connect(self.test, SIGNAL('clicked()'), self.do_test)
self.connect(self.previous, SIGNAL('clicked()'), self.goto_previous)
self.connect(self.next, SIGNAL('clicked()'), self.goto_next)
self.test.setDefault(True)
self.match_locs = []