fix selection color of project builder log

This commit is contained in:
OnFlApp 2020-08-30 15:19:28 +02:00
parent acf38c1b62
commit f911af422f

View file

@ -220,6 +220,11 @@
[logOutput setSelectable:YES];
[logOutput setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
[logOutput setBackgroundColor:[NSColor lightGrayColor]];
[logOutput setSelectedTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[NSColor whiteColor], NSBackgroundColorAttributeName,
[NSColor blackColor], NSForegroundColorAttributeName,
nil]];
[[logOutput textContainer] setWidthTracksTextView:YES];
[[logOutput textContainer] setHeightTracksTextView:YES];
[logOutput setHorizontallyResizable:NO];