Files
macdown/MacDown/Code/Preferences/MPPreferencesViewController.h
Tzu-ping Chung 597007befb Trigger UI updates on reload button pressed
The rendering methods are called, but the UI does not update. Maybe due
to caching? Need to investigate.
2014-08-16 15:05:05 +08:00

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