mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 18:24:30 -04:00
Port obsolete setAutoCompletionCaseSensitivity from QCombobox
This commit is contained in:
parent
4ff0c73b1a
commit
ae2183ed61
@ -574,7 +574,7 @@ class EnComboBox(QComboBox): # {{{
|
|||||||
def __init__(self, *args):
|
def __init__(self, *args):
|
||||||
QComboBox.__init__(self, *args)
|
QComboBox.__init__(self, *args)
|
||||||
self.setLineEdit(EnLineEdit(self))
|
self.setLineEdit(EnLineEdit(self))
|
||||||
self.setAutoCompletionCaseSensitivity(Qt.CaseInsensitive)
|
self.completer().setCaseSensitivity(Qt.CaseInsensitive)
|
||||||
self.setMinimumContentsLength(20)
|
self.setMinimumContentsLength(20)
|
||||||
|
|
||||||
def text(self):
|
def text(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user