mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -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):
|
||||
QWidget.__init__(self, parent)
|
||||
self.setupUi(self)
|
||||
self.edit.completer().setCaseSensitivity(Qt.CaseSensitive)
|
||||
|
||||
self.book_id = None
|
||||
self.db = None
|
||||
|
Loading…
x
Reference in New Issue
Block a user