Bug fix: Auto rejoin memos on reconnect
This commit is contained in:
parent
381c77696d
commit
a696e4b028
2 changed files with 6 additions and 1 deletions
|
@ -18,7 +18,6 @@ Bugs
|
||||||
* Windows doesn't show style sheet sometimes?? Maybe related to themes.
|
* Windows doesn't show style sheet sometimes?? Maybe related to themes.
|
||||||
* Issues with connecting? Client not closing connection right? People keep getting "nick taken" messages
|
* Issues with connecting? Client not closing connection right? People keep getting "nick taken" messages
|
||||||
* Windows XP SP2: sometimes mouse clicks dont register? must be some kinda crash
|
* Windows XP SP2: sometimes mouse clicks dont register? must be some kinda crash
|
||||||
* Leave memos on reconnect, needs to auto-rejoin memos
|
|
||||||
* When using mood sort, scroll position jumps to last selected chum
|
* When using mood sort, scroll position jumps to last selected chum
|
||||||
|
|
||||||
Mac Bugs
|
Mac Bugs
|
||||||
|
|
|
@ -2741,6 +2741,12 @@ class MainProgram(QtCore.QObject):
|
||||||
if status == QtGui.QDialog.Rejected:
|
if status == QtGui.QDialog.Rejected:
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
|
if self.widget.tabmemo:
|
||||||
|
for c in self.widget.tabmemo.convos:
|
||||||
|
self.irc.joinChannel(c)
|
||||||
|
else:
|
||||||
|
for c in self.widget.memos.values():
|
||||||
|
self.irc.joinChannel(c.channel)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
@QtCore.pyqtSlot()
|
@QtCore.pyqtSlot()
|
||||||
|
|
Loading…
Reference in a new issue