From 9f6ee05d4355f5c8a6e37ecc1f07726e01b926e5 Mon Sep 17 00:00:00 2001 From: karxi Date: Mon, 2 Jan 2017 13:46:42 -0500 Subject: [PATCH] Fixed idle messages (again) --- convo.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/convo.py b/convo.py index e946c33..c4d612b 100644 --- a/convo.py +++ b/convo.py @@ -78,6 +78,9 @@ class PesterTabWindow(QtGui.QFrame): self.tabs.tabText(self.tabs.currentIndex()) == convo.title()): return True + def isBot(self, *args, **kwargs): + return self.mainwindow.isBot(*args, **kwargs) + def keyPressEvent(self, event): # TODO: Clean this up. Our text areas now call this. keypress = event.key()