Bug fix: Don't register +b in memo modes

This commit is contained in:
Kiooeht 2011-06-07 12:36:25 -07:00
parent fbb16b9549
commit 565cc321b9
2 changed files with 2 additions and 2 deletions

View file

@ -962,7 +962,7 @@ class PesterMemo(PesterConvo):
icon = QtGui.QIcon()
c.setIcon(icon)
self.sortUsers()
elif c == self.channel and update[0] in ["+","-"]:
elif c == self.channel and h == "" and update[0] in ["+","-"]:
self.updateChanModes(update)
@QtCore.pyqtSlot()

View file

@ -10,7 +10,7 @@ _pcStatus = "B" # A = alpha
# B = beta
# RC = release candidate
# None = public release
_pcRevision = "3"
_pcRevision = "4"
_pcVersion = ""
def pcVerCalc():