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.
23 lines
473 B
Objective-C
23 lines
473 B
Objective-C
//
|
|
// MPPreferencesViewController.h
|
|
// MacDown
|
|
//
|
|
// Created by Tzu-ping Chung on 7/06/2014.
|
|
// Copyright (c) 2014 Tzu-ping Chung . All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
@class MPPreferences;
|
|
|
|
|
|
extern NSString * const MPDidRequestEditorSetupNotification;
|
|
extern NSString * const MPDidRequestPreviewRenderNotification;
|
|
|
|
@interface MPPreferencesViewController : NSViewController
|
|
|
|
- (id)init;
|
|
|
|
@property (nonatomic, readonly) MPPreferences *preferences;
|
|
|
|
@end
|