1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 635d9ce2..956f7e09 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -71,11 +71,11 @@ Item {
Shortcut {
sequence: StandardKey.MoveToPreviousPage
- onActivated: { chat.contentY = chat.contentY - chat.height; chat.returnToBounds(); }
+ onActivated: { chat.contentY = chat.contentY - chat.height / 2; chat.returnToBounds(); }
}
Shortcut {
sequence: StandardKey.MoveToNextPage
- onActivated: { chat.contentY = chat.contentY + chat.height; chat.returnToBounds(); }
+ onActivated: { chat.contentY = chat.contentY + chat.height / 2; chat.returnToBounds(); }
}
ScrollBar.vertical: ScrollBar {
|