mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +00:00
MacPDF: Make up and down flip pages when PDF view has focus
Previously, it only reacted to arrow left andn arrow right, and to opt-up and opt-down.
This commit is contained in:
parent
627b152d49
commit
6528f6db26
Notes:
sideshowbarker
2024-07-17 05:58:46 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/6528f6db26 Pull-request: https://github.com/SerenityOS/serenity/pull/21400
1 changed files with 12 additions and 0 deletions
|
@ -164,6 +164,12 @@ static NSBitmapImageRep* ns_from_gfx(NonnullRefPtr<Gfx::Bitmap> bitmap_p)
|
|||
[self interpretKeyEvents:@[ event ]];
|
||||
}
|
||||
|
||||
// Called on down arrow.
|
||||
- (IBAction)moveDown:(id)sender
|
||||
{
|
||||
[self goToNextPage:self];
|
||||
}
|
||||
|
||||
// Called on left arrow.
|
||||
- (IBAction)moveLeft:(id)sender
|
||||
{
|
||||
|
@ -176,6 +182,12 @@ static NSBitmapImageRep* ns_from_gfx(NonnullRefPtr<Gfx::Bitmap> bitmap_p)
|
|||
[self goToNextPage:self];
|
||||
}
|
||||
|
||||
// Called on up arrow.
|
||||
- (IBAction)moveUp:(id)sender
|
||||
{
|
||||
[self goToPreviousPage:self];
|
||||
}
|
||||
|
||||
#pragma mark - State restoration
|
||||
|
||||
- (void)encodeRestorableStateWithCoder:(NSCoder*)coder
|
||||
|
|
Loading…
Add table
Reference in a new issue