summary refs log tree commit diff
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
parentAdd leave button to space preview (diff)
downloadnheko-9429e3c000ab1b18dffb91844c24b5c99c1b5d8f.tar.xz
Scroll farther on PgUp/PgDn
-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(); } }