79 |
79 |
80 @pyqtSlot(str) |
80 @pyqtSlot(str) |
81 def on_patternEdit_textChanged(self, pattern): |
81 def on_patternEdit_textChanged(self, pattern): |
82 """ |
82 """ |
83 Private slot to handle entering a pattern. |
83 Private slot to handle entering a pattern. |
|
84 |
|
85 @param pattern pattern string entered into the line edit (string) |
84 """ |
86 """ |
85 enable = False |
87 enable = False |
86 if pattern: |
88 if pattern: |
87 foundItems = self.patternList.findItems( |
89 foundItems = self.patternList.findItems( |
88 pattern, Qt.MatchCaseSensitive | Qt.MatchExactly) |
90 pattern, Qt.MatchCaseSensitive | Qt.MatchExactly) |