mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-05-17 12:40:37 +00:00
597007befb
The rendering methods are called, but the UI does not update. Maybe due to caching? Need to investigate.
32 lines
688 B
Objective-C
32 lines
688 B
Objective-C
//
|
|
// MPPreferencesViewController.m
|
|
// MacDown
|
|
//
|
|
// Created by Tzu-ping Chung on 7/06/2014.
|
|
// Copyright (c) 2014 Tzu-ping Chung . All rights reserved.
|
|
//
|
|
|
|
#import "MPPreferencesViewController.h"
|
|
#import "MPPreferences.h"
|
|
|
|
|
|
NSString * const MPDidRequestPreviewRenderNotification =
|
|
@"MPDidRequestPreviewRenderNotificationName";
|
|
NSString * const MPDidRequestEditorSetupNotification =
|
|
@"MPDidRequestEditorSetupNotificationName";
|
|
|
|
@implementation MPPreferencesViewController
|
|
|
|
- (id)init
|
|
{
|
|
return [self initWithNibName:NSStringFromClass(self.class)
|
|
bundle:nil];
|
|
}
|
|
|
|
- (MPPreferences *)preferences
|
|
{
|
|
return [MPPreferences sharedInstance];
|
|
}
|
|
|
|
@end
|