Bug fix: Add chum dialog reopens after adding existing chum. Fixes #9
This commit is contained in:
parent
b4518a225c
commit
f6b45fb32f
2 changed files with 2 additions and 0 deletions
|
@ -17,6 +17,7 @@ CHANGELOG
|
|||
* Makefile for Linux installing - Kiooeht [evacipatedBox]
|
||||
* Bug fixes
|
||||
* Don't require pygame (it's kind of optional, you just don't get sound) - Kiooeht [evacipatedBox]
|
||||
* Allow add chum dialog to opne after adding an existing chum - Kiooeht [evacipatedBox]
|
||||
|
||||
### 3.41.3
|
||||
* Add group option when adding chum - ghostDunk
|
||||
|
|
|
@ -1871,6 +1871,7 @@ class PesterWindow(MovingWindow):
|
|||
if ok:
|
||||
handle = unicode(handle)
|
||||
if handle in [h.handle for h in self.chumList.chums]:
|
||||
self.addchumdialog = None
|
||||
return
|
||||
if not (PesterProfile.checkLength(handle) and
|
||||
PesterProfile.checkValid(handle)[0]):
|
||||
|
|
Loading…
Reference in a new issue