Bulk metadata edit: Fix regression that inverted the meaning of the case sensitivity setting in the Search & replace tab

This commit is contained in:
Kovid Goyal 2021-01-09 06:23:04 +05:30
parent 78a001b335
commit 986408809c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -975,7 +975,7 @@ class MetadataBulkDialog(QDialog, Ui_MetadataBulkDialog):
self.s_r_set_colors()
flags = regex.FULLCASE | regex.UNICODE
if self.case_sensitive.isChecked():
if not self.case_sensitive.isChecked():
flags |= regex.IGNORECASE
try: