Fix away
This commit is contained in:
parent
da8e6ddbf7
commit
639ece578e
1 changed files with 2 additions and 2 deletions
4
irc.py
4
irc.py
|
@ -499,9 +499,9 @@ class PesterIRC(QtCore.QThread):
|
||||||
def set_away(self, away=True):
|
def set_away(self, away=True):
|
||||||
"""Send AWAY to update away status, slot is called from main thread."""
|
"""Send AWAY to update away status, slot is called from main thread."""
|
||||||
if away:
|
if away:
|
||||||
self.away("Idle")
|
self._send_irc.away("Idle")
|
||||||
else:
|
else:
|
||||||
self.away()
|
self._send_irc.away()
|
||||||
|
|
||||||
@QtCore.pyqtSlot(str, str)
|
@QtCore.pyqtSlot(str, str)
|
||||||
def kill_some_quirks(self, channel, handle):
|
def kill_some_quirks(self, channel, handle):
|
||||||
|
|
Loading…
Reference in a new issue