diff --git a/CHANGELOG.mkdn b/CHANGELOG.mkdn index 2f2ec55..da992a2 100644 --- a/CHANGELOG.mkdn +++ b/CHANGELOG.mkdn @@ -43,6 +43,7 @@ CHANGELOG * Don't blow up if someone's not using Pesterchum in a memo - Kiooeht [evacipatedBox] * Make 'logs' and 'profiles' directories if non-existant - Kiooeht [evacipatedBox] * Don't split messages in bad places - Kiooeht [evacipatedBox] + * Chumhandles must match EXACTLY to register mood changes - Kiooeht [evacipatedBox] ### 3.14.1 * Pesterchum 3.14 - illuminatedwax [ghostDunk] diff --git a/pesterchum.py b/pesterchum.py index 8dd5b7d..304cf8f 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -795,7 +795,7 @@ class chumArea(RightClickTree): #self.topLevelItem(0).sortChildren(0, QtCore.Qt.AscendingOrder) def getChums(self, handle): - chums = self.findItems(handle, QtCore.Qt.MatchContains | QtCore.Qt.MatchRecursive) + chums = self.findItems(handle, QtCore.Qt.MatchExactly | QtCore.Qt.MatchRecursive) return chums def showAllChums(self):