Multiple bug fixes

This commit is contained in:
BasioMeusPuga
2018-01-17 10:43:17 +05:30
parent bc344737d2
commit 7c6993a170
5 changed files with 18 additions and 11 deletions

View File

@@ -153,8 +153,9 @@ class TableProxyModel(QtCore.QSortFilterProxyModel):
pass
for i in valid_data:
if self.filter_string in i:
return True
if i:
if self.filter_string in i:
return True
return False