Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes issue #1104 (Rendering pane flashing) #1288

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 0 additions & 15 deletions MacDown/Code/Application/MPMainController.m
Original file line number Diff line number Diff line change
Expand Up @@ -102,21 +102,6 @@ @implementation MPMainController

- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
// Using private API [WebCache setDisabled:YES] to disable WebView's cache
id webCacheClass = (id)NSClassFromString(@"WebCache");
if (webCacheClass) {
// Ignoring "undeclared selector" warning
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wundeclared-selector"
BOOL setDisabledValue = YES;
NSMethodSignature *signature = [webCacheClass methodSignatureForSelector:@selector(setDisabled:)];
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];
invocation.selector = @selector(setDisabled:);
invocation.target = [webCacheClass class];
[invocation setArgument:&setDisabledValue atIndex:2];
[invocation invoke];
#pragma clang diagnostic pop
}
[[NSAppleEventManager sharedAppleEventManager]
setEventHandler:self
andSelector:@selector(openUrlSchemeAppleEvent:withReplyEvent:)
Expand Down