2049 """ |
2049 """ |
2050 selectedMessageCode = self.filterComboBox.currentText() |
2050 selectedMessageCode = self.filterComboBox.currentText() |
2051 |
2051 |
2052 for topRow in range(self.resultList.topLevelItemCount()): |
2052 for topRow in range(self.resultList.topLevelItemCount()): |
2053 topItem = self.resultList.topLevelItem(topRow) |
2053 topItem = self.resultList.topLevelItem(topRow) |
|
2054 topItem.setExpanded(True) |
2054 visibleChildren = topItem.childCount() |
2055 visibleChildren = topItem.childCount() |
2055 for childIndex in range(topItem.childCount()): |
2056 for childIndex in range(topItem.childCount()): |
2056 childItem = topItem.child(childIndex) |
2057 childItem = topItem.child(childIndex) |
2057 if selectedMessageCode: |
2058 if selectedMessageCode: |
2058 hideChild = ( |
2059 hideChild = ( |