diff --git a/TODO.mkdn b/TODO.mkdn index 48d25d4..76de481 100644 --- a/TODO.mkdn +++ b/TODO.mkdn @@ -63,6 +63,9 @@ Features * Make the memo name entry box accept a comma-separated list * Make right-clicking on a tab open up the right-click menu one would get on right-clicking the title (frame??) +* Add a separate 'Tweaks' section in Options +* Fix graphical issues with dark themes vs. light themes (Qt/text too light/etc.) + Todo/Done ---- * Fix parser text-loss bug that plagues everyone (especially Chumdroid users) diff --git a/convo.py b/convo.py index 45a7050..a87458e 100644 --- a/convo.py +++ b/convo.py @@ -425,6 +425,10 @@ class PesterText(QtGui.QTextEdit): self.parent().clearNewMessage() QtGui.QTextEdit.focusInEvent(self, event) + @staticmethod + def isBot(*args, **kwargs): + return self.parent().isBot(*args, **kwargs) + def keyPressEvent(self, event): # First parent is the PesterConvo containing this. # Second parent is the PesterTabWindow containing *it*.