mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-15 16:11:25 +00:00
Merge pull request #3 from onflapp/fix-project-builder-log-selection
fix project builder log selection color
This commit is contained in:
commit
eb5837315c
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