Minor idle cleanup
This commit is contained in:
parent
7b018e0906
commit
54b42e0189
2 changed files with 7 additions and 0 deletions
|
@ -63,6 +63,9 @@ Features
|
||||||
* Make the memo name entry box accept a comma-separated list
|
* 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??)
|
* 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
|
Todo/Done
|
||||||
----
|
----
|
||||||
* Fix parser text-loss bug that plagues everyone (especially Chumdroid users)
|
* Fix parser text-loss bug that plagues everyone (especially Chumdroid users)
|
||||||
|
|
4
convo.py
4
convo.py
|
@ -425,6 +425,10 @@ class PesterText(QtGui.QTextEdit):
|
||||||
self.parent().clearNewMessage()
|
self.parent().clearNewMessage()
|
||||||
QtGui.QTextEdit.focusInEvent(self, event)
|
QtGui.QTextEdit.focusInEvent(self, event)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def isBot(*args, **kwargs):
|
||||||
|
return self.parent().isBot(*args, **kwargs)
|
||||||
|
|
||||||
def keyPressEvent(self, event):
|
def keyPressEvent(self, event):
|
||||||
# First parent is the PesterConvo containing this.
|
# First parent is the PesterConvo containing this.
|
||||||
# Second parent is the PesterTabWindow containing *it*.
|
# Second parent is the PesterTabWindow containing *it*.
|
||||||
|
|
Loading…
Reference in a new issue