Made PgUp/PgDown pass to super again
This commit is contained in:
parent
dcab587f33
commit
3a1581a27a
1 changed files with 2 additions and 1 deletions
3
convo.py
3
convo.py
|
@ -476,7 +476,8 @@ class PesterText(QtGui.QTextEdit):
|
|||
def keyPressEvent(self, event):
|
||||
# First parent is the PesterConvo containing this.
|
||||
# Second parent is the PesterTabWindow containing *it*.
|
||||
pass_to_super = (QtCore.Qt.Key_Up, QtCore.Qt.Key_Down)
|
||||
pass_to_super = (QtCore.Qt.Key_PageUp, QtCore.Qt.Key_PageDown,
|
||||
QtCore.Qt.Key_Up, QtCore.Qt.Key_Down)
|
||||
parent = self.parent()
|
||||
key = event.key()
|
||||
keymods = event.modifiers()
|
||||
|
|
Loading…
Reference in a new issue