1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:37:34 +00:00

MacPDF: Override -[NSDocument isEntireFileLoaded]

We keep the NSData object around and stream for it, so that looks
like a good thing to do.
This commit is contained in:
Nico Weber 2023-09-29 20:12:09 -04:00 committed by Andreas Kling
parent e9b0ebe55a
commit 8a7d3cb3f4

View file

@ -136,6 +136,11 @@
return YES; return YES;
} }
- (BOOL)isEntireFileLoaded
{
return NO;
}
- (IBAction)showGoToPageDialog:(id)sender - (IBAction)showGoToPageDialog:(id)sender
{ {
auto alert = [[NSAlert alloc] init]; auto alert = [[NSAlert alloc] init];