mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-19 09:02:02 +00:00
fix selection color of project builder log
This commit is contained in:
parent
acf38c1b62
commit
f911af422f
1 changed files with 5 additions and 0 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue