快捷键功能GUI初步

This commit is contained in:
2022-10-15 18:56:14 +08:00
parent 7a56a66f6c
commit 6d7cfc87bd
36 changed files with 339 additions and 41 deletions

View File

@@ -33,7 +33,7 @@ class Connect:
return
for i in lists:
# 显示筛选的内容
if ui.searchThings.text() in i[0]:
if ui.searchThings.text().upper() in i[0].upper():
nmodel.appendRow(QtGui.QStandardItem(i[0]))
ui.searchList.setModel(nmodel)