Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

grep: add Search button

Changeset 494a86e45602

Parent 3e8b47b86254

by André Sintzoff

Changes to one file · Browse files at 494a86e45602 Showing diff from parent 3e8b47b86254 Diff from another changeset...

 
50
51
52
 
 
53
54
55
 
56
57
58
 
95
96
97
 
98
99
100
 
50
51
52
53
54
55
56
57
58
59
60
61
 
98
99
100
101
102
103
104
@@ -50,9 +50,12 @@
  le = QLineEdit()   lbl.setBuddy(le)   lbl.setToolTip(_('Regular expression search pattern')) + bt = QPushButton(_('Search')) + bt.setDefault(True)   chk = QCheckBox(_('Ignore case'))   hbox.addWidget(lbl)   hbox.addWidget(le, 1) + hbox.addWidget(bt)   hbox.addWidget(chk)     incle = QLineEdit() @@ -95,6 +98,7 @@
  revle.returnPressed.connect(self.searchActivated)   excle.returnPressed.connect(self.searchActivated)   incle.returnPressed.connect(self.searchActivated) + bt.clicked.connect(self.searchActivated)   working.setChecked(True)     def expandtoggled(checked):