add PageUp / PageDown scrolling

This commit is contained in:
Drew Weymouth
2024-12-05 08:20:06 -08:00
parent 0936380fbc
commit b0b34e7791
2 changed files with 18 additions and 4 deletions
+4
View File
@@ -383,6 +383,10 @@ func (m *MainWindow) addShortcuts() {
m.BrowsingPane.ScrollUp()
case fyne.KeyDown:
m.BrowsingPane.ScrollDown()
case fyne.KeyPageUp:
m.BrowsingPane.PageUp()
case fyne.KeyPageDown:
m.BrowsingPane.PageDown()
case fyne.KeyEscape:
m.Controller.CloseEscapablePopUp()
case fyne.KeySpace: