diff --git a/Telegram/SourceFiles/history/view/history_view_replies_section.cpp b/Telegram/SourceFiles/history/view/history_view_replies_section.cpp index 00977a96c..a34355415 100644 --- a/Telegram/SourceFiles/history/view/history_view_replies_section.cpp +++ b/Telegram/SourceFiles/history/view/history_view_replies_section.cpp @@ -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());