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

grep: copy tooltips from hgtk folder, tweak behavior

Changeset 18d30bad1211

Parent ef05fce5b00e

by Steve Borho

Changes to one file · Browse files at 18d30bad1211 Showing diff from parent ef05fce5b00e Diff from another changeset...

 
68
69
70
 
 
 
71
 
 
 
72
73
74
 
86
87
88
 
 
89
90
91
 
194
195
196
 
197
198
199
 
68
69
70
71
72
73
74
75
76
77
78
79
80
 
92
93
94
95
96
97
98
99
 
202
203
204
205
206
207
208
@@ -68,7 +68,13 @@
  grid.addWidget(revle, 2, 1)   grid.addWidget(singlematch, 0, 3)   ilabel = QLabel(_('Includes:')) + ilabel.setToolTip(_('Comma separated list of inclusion patterns.' + ' By default, the entire repository is searched.')) + ilabel.setBuddy(incle)   elabel = QLabel(_('Excludes:')) + elabel.setToolTip(_('Comma separated list of exclusion patterns.' + ' Exclusion patterns are applied after inclusion patterns.')) + elabel.setBuddy(excle)   grid.addWidget(ilabel, 1, 2)   grid.addWidget(incle, 1, 3)   grid.addWidget(elabel, 2, 2) @@ -86,6 +92,8 @@
  history.toggled.connect(singlematch.setDisabled)   revle.setEnabled(False)   revle.returnPressed.connect(self.searchActivated) + excle.returnPressed.connect(self.searchActivated) + incle.returnPressed.connect(self.searchActivated)   working.setChecked(True)     def expandtoggled(checked): @@ -194,6 +202,7 @@
  for col in xrange(COL_TEXT):   self.tv.resizeColumnToContents(col)   self.le.setEnabled(True) + self.le.setFocus()   self.emit(SIGNAL('loadComplete'))