mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-28 14:55:45 +01:00
Advanced search dialog: Fix equals and regex matching not being applied for custom column searches. Fixes #980221 ("Tags" field in advanced search does not obey regex setting)
This commit is contained in:
parent
220a4d8cb9
commit
94440f3fc6
1 changed files with 2 additions and 1 deletions
|
|
@ -182,7 +182,8 @@ def box_search_string(self):
|
|||
global box_values
|
||||
box_values = copy.deepcopy(self.box_last_values)
|
||||
if general:
|
||||
ans.append(unicode(self.general_combo.currentText()) + ':"' + general + '"')
|
||||
ans.append(unicode(self.general_combo.currentText()) + ':"' +
|
||||
self.mc + general + '"')
|
||||
if ans:
|
||||
return ' and '.join(ans)
|
||||
return ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue