Add scroll to top/bottom keybinds

This commit is contained in:
miruka
2019-08-30 13:40:56 -04:00
parent 6a540f6397
commit 70b82b7b59
3 changed files with 38 additions and 4 deletions

View File

@@ -48,6 +48,18 @@ HShortcutHandler {
onHeld: pressed(event)
}
HShortcut {
sequences: settings.keys.scrollToTop
onPressed: Utils.flickToTop(flickTarget)
onHeld: pressed(event)
}
HShortcut {
sequences: settings.keys.scrollToBottom
onPressed: Utils.flickToBottom(flickTarget)
onHeld: pressed(event)
}
// SidePane