1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:27:43 +00:00

MacPDF: Add Debug menu items to hook up Clip Images/Paths settings

This commit is contained in:
Nico Weber 2024-01-16 20:53:55 -05:00 committed by Sam Atkins
parent 1845a406ea
commit b5aef8e404
5 changed files with 50 additions and 0 deletions

View file

@ -144,6 +144,16 @@
[_pdfView toggleShowClippingPaths:sender];
}
- (IBAction)toggleClipImages:(id)sender
{
[_pdfView toggleClipImages:sender];
}
- (IBAction)toggleClipPaths:(id)sender
{
[_pdfView toggleClipPaths:sender];
}
- (IBAction)showGoToPageDialog:(id)sender
{
auto alert = [[NSAlert alloc] init];