mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 08:01:24 +00:00
daily work
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7560 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8984c54fce
commit
08d183d7e6
1 changed files with 5 additions and 5 deletions
|
@ -69,9 +69,9 @@
|
|||
logOutput = [[NSTextView alloc] initWithFrame:NSMakeRect(0,0,472,88)];
|
||||
[logOutput setMaxSize:NSMakeSize(1e7, 1e7)];
|
||||
[logOutput setVerticallyResizable:YES];
|
||||
[logOutput setHorizontallyResizable:YES];
|
||||
[logOutput setHorizontallyResizable:NO];
|
||||
[logOutput setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
|
||||
//[logOutput setBackgroundColor:[NSColor whiteColor]];
|
||||
[logOutput setBackgroundColor:[NSColor lightGrayColor]];
|
||||
[[logOutput textContainer] setWidthTracksTextView:YES];
|
||||
|
||||
scrollView1 = [[NSScrollView alloc] initWithFrame:NSMakeRect (0,0,496,92)];
|
||||
|
@ -91,7 +91,7 @@
|
|||
textView2 = [[NSTextView alloc] initWithFrame:NSMakeRect(0,0,472,88)];
|
||||
[textView2 setMaxSize:NSMakeSize(1e7, 1e7)];
|
||||
[textView2 setVerticallyResizable:YES];
|
||||
[textView2 setHorizontallyResizable:YES];
|
||||
[textView2 setHorizontallyResizable:NO];
|
||||
[textView2 setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
|
||||
[textView2 setBackgroundColor:[NSColor whiteColor]];
|
||||
[[textView2 textContainer] setWidthTracksTextView:YES];
|
||||
|
@ -100,8 +100,8 @@
|
|||
[scrollView2 setDocumentView:textView2];
|
||||
[textView2 setMinSize:NSMakeSize(0.0,[scrollView2 contentSize].height)];
|
||||
[[textView2 textContainer] setContainerSize:NSMakeSize([scrollView2 contentSize].width,1e7)];
|
||||
[scrollView2 setHasHorizontalScroller: YES];
|
||||
[scrollView2 setHasVerticalScroller: YES];
|
||||
[scrollView2 setHasHorizontalScroller:NO];
|
||||
[scrollView2 setHasVerticalScroller:YES];
|
||||
[scrollView2 setBorderType: NSBezelBorder];
|
||||
[scrollView2 setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
|
||||
[scrollView2 autorelease];
|
||||
|
|
Loading…
Reference in a new issue