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() icon = QtGui.QIcon()
c.setIcon(icon) c.setIcon(icon)
self.sortUsers() self.sortUsers()
elif c == self.channel and update[0] in ["+","-"]: elif c == self.channel and h == "" and update[0] in ["+","-"]:
self.updateChanModes(update) self.updateChanModes(update)
@QtCore.pyqtSlot() @QtCore.pyqtSlot()

View file

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