case insensitivity
authorThomasV <thomasv@gitorious>
Sun, 10 Jun 2012 19:27:31 +0000 (21:27 +0200)
committerThomasV <thomasv@gitorious>
Sun, 10 Jun 2012 19:27:31 +0000 (21:27 +0200)
lib/gui_qt.py

index 7601203..39a329c 100644 (file)
@@ -423,6 +423,7 @@ class ElectrumWindow(QMainWindow):
         grid.addWidget(self.payto_e, 1, 1, 1, 3)
 
         completer = QCompleter()
+        completer.setCaseSensitivity(False)
         self.payto_e.setCompleter(completer)
         self.completions = QStringListModel()
         completer.setModel(self.completions)