Fix PageUp/PageDown scrolling in Replies section.

Fixes #8666.
This commit is contained in:
John Preston 2020-10-01 10:59:33 +03:00
parent dcac3146c7
commit 4be03ffc25

View file

@ -531,7 +531,7 @@ void RepliesWidget::setupComposeControls() {
//if (const auto item = messages.lastSentMessage(_history)) {
// _inner->editMessageRequestNotify(item->fullId());
//} else {
// _scroll->keyPressEvent(e);
_scroll->keyPressEvent(e);
//}
} else {
_scroll->keyPressEvent(e);
@ -540,6 +540,12 @@ void RepliesWidget::setupComposeControls() {
} else if (e->key() == Qt::Key_Down) {
_scroll->keyPressEvent(e);
e->accept();
} else if (e->key() == Qt::Key_PageDown) {
_scroll->keyPressEvent(e);
e->accept();
} else if (e->key() == Qt::Key_PageUp) {
_scroll->keyPressEvent(e);
e->accept();
}
}, lifetime());