1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml
index 45b44022..f9aaf9dd 100644
--- a/resources/qml/MessageView.qml
+++ b/resources/qml/MessageView.qml
@@ -206,7 +206,7 @@ Item {
Shortcut {
sequence: StandardKey.MoveToPreviousPage
onActivated: {
- chat.contentY = chat.contentY - chat.height / 2;
+ chat.contentY = chat.contentY - chat.height * 0.9;
chat.returnToBounds();
}
}
@@ -214,7 +214,7 @@ Item {
Shortcut {
sequence: StandardKey.MoveToNextPage
onActivated: {
- chat.contentY = chat.contentY + chat.height / 2;
+ chat.contentY = chat.contentY + chat.height * 0.9;
chat.returnToBounds();
}
}
|