mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Bulk metadata edit: Fix regression that inverted the meaning of the case sensitivity setting in the Search & replace tab
This commit is contained in:
parent
78a001b335
commit
986408809c
@ -975,7 +975,7 @@ class MetadataBulkDialog(QDialog, Ui_MetadataBulkDialog):
|
|||||||
self.s_r_set_colors()
|
self.s_r_set_colors()
|
||||||
flags = regex.FULLCASE | regex.UNICODE
|
flags = regex.FULLCASE | regex.UNICODE
|
||||||
|
|
||||||
if self.case_sensitive.isChecked():
|
if not self.case_sensitive.isChecked():
|
||||||
flags |= regex.IGNORECASE
|
flags |= regex.IGNORECASE
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user