Skip to content
Snippets Groups Projects
Commit 9429e3c0 authored by Loren Burkholder's avatar Loren Burkholder
Browse files

Scroll farther on PgUp/PgDn

parent 7bb50900
No related branches found
No related tags found
No related merge requests found
Pipeline #4557 failed
......@@ -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();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment