mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Make page scrolling half height
This commit is contained in:
parent
9b7c1cb7f9
commit
735086371d
1 changed files with 2 additions and 2 deletions
|
@ -71,11 +71,11 @@ Item {
|
|||
|
||||
Shortcut {
|
||||
sequence: StandardKey.MoveToPreviousPage
|
||||
onActivated: { chat.contentY = chat.contentY - chat.height; chat.returnToBounds(); }
|
||||
onActivated: { chat.contentY = chat.contentY - chat.height / 2; chat.returnToBounds(); }
|
||||
}
|
||||
Shortcut {
|
||||
sequence: StandardKey.MoveToNextPage
|
||||
onActivated: { chat.contentY = chat.contentY + chat.height; chat.returnToBounds(); }
|
||||
onActivated: { chat.contentY = chat.contentY + chat.height / 2; chat.returnToBounds(); }
|
||||
}
|
||||
|
||||
ScrollBar.vertical: ScrollBar {
|
||||
|
|
Loading…
Reference in a new issue