Fix #8441 (Custom Meta Data tab requiring capitalization where main GUI does not.)

This commit is contained in:
Kovid Goyal 2011-01-18 14:04:19 -07:00
commit 5fcc1369df

View File

@ -527,7 +527,7 @@ class EnComboBox(QComboBox):
def __init__(self, *args):
QComboBox.__init__(self, *args)
self.setLineEdit(EnLineEdit(self))
self.setAutoCompletionCaseSensitivity(Qt.CaseSensitive)
self.setAutoCompletionCaseSensitivity(Qt.CaseInsensitive)
self.setMinimumContentsLength(20)
def text(self):