Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions OSX/AppController.m
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,9 @@ - (void)awakeFromNib {
[_classBrowser setCellClass:[BrowserCell class]];

[_headerTextView setFont:[NSFont userFixedPitchFontOfSize:11.0]]; // TODO -- make size and font a default
if (@available(macOS 10.14, *)) {
[_headerTextView setUsesAdaptiveColorMappingForDarkAppearance:YES];
}

RBBrowserViewType viewType = [[NSUserDefaults standardUserDefaults] integerForKey:@"RTBViewType"];
[self changeViewTypeTo:viewType];
Expand Down