mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
Make the history completion for the search and replace edit box case-sensitive. Fixes #1752447 [SEARCH field in Find & Replace does not allow all caps](https://bugs.launchpad.net/calibre/+bug/1752447)
This commit is contained in:
parent
5e4f43588e
commit
24fbc4767e
@ -206,6 +206,7 @@ class RegexEdit(QWidget, Ui_Edit):
|
|||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
QWidget.__init__(self, parent)
|
QWidget.__init__(self, parent)
|
||||||
self.setupUi(self)
|
self.setupUi(self)
|
||||||
|
self.edit.completer().setCaseSensitivity(Qt.CaseSensitive)
|
||||||
|
|
||||||
self.book_id = None
|
self.book_id = None
|
||||||
self.db = None
|
self.db = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user