Scroll farther on PgUp/PgDn
This commit is contained in:
parent
7bb509005c
commit
9429e3c000
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user