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

annotate: finally fix case sensitivity toggle

Changeset 15e45503d567

Parent 6f1f4cabfa33

by Steve Borho

Changes to one file · Browse files at 15e45503d567 Showing diff from parent 6f1f4cabfa33 Diff from another changeset...

 
429
430
431
432
 
433
434
435
 
429
430
431
 
432
433
434
435
@@ -429,7 +429,7 @@
  msg = _('grep: invalid match pattern: %s\n') % inst   self.status.setText(hglib.tounicode(msg))   if self.chk.isChecked(): - regexp = QRegExp(pattern) + regexp = QRegExp(pattern, Qt.CaseInsensitive)   icase = True   else:   icase = False