summaryrefslogtreecommitdiffstats
path: root/resources/qml/MessageView.qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2023-03-02 13:35:14 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2023-03-02 13:35:14 -0500
commit9429e3c000ab1b18dffb91844c24b5c99c1b5d8f (patch)
treedeef0c670ef2dd3110f4ed9b63d92130f40bf7a9 /resources/qml/MessageView.qml
parent7bb509005c734aec03b0a4845a649734ef417f3f (diff)
Scroll farther on PgUp/PgDn
Diffstat (limited to 'resources/qml/MessageView.qml')
-rw-r--r--resources/qml/MessageView.qml4
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();
}
}