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

This commit is contained in:
Charles Haley 2011-01-18 20:22:15 +00:00
parent 25fa78ed6e
commit c7c563e0bb

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):