Index: NSBrowser.m =================================================================== RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSBrowser.m,v retrieving revision 1.116 diff -u -r1.116 NSBrowser.m --- NSBrowser.m 28 Jun 2004 13:19:32 -0000 1.116 +++ NSBrowser.m 20 Aug 2004 17:43:44 -0000 @@ -704,6 +704,7 @@ sc = [[NSScrollView alloc] initWithFrame: rect]; [sc setHasHorizontalScroller: NO]; [sc setHasVerticalScroller: YES]; + [sc setBackgroundColor: [NSColor rowBackgroundColor]]; if (_separatesColumns) { @@ -892,6 +893,7 @@ if (sc) { [sc setDocumentView: nil]; + [sc setBackgroundColor: [NSColor rowBackgroundColor]]; } [bc setIsLoaded: NO]; [self setTitle: nil ofColumn: i]; @@ -1696,6 +1698,7 @@ ms.width = cs.width; [matrix setCellSize: ms]; [sc setDocumentView: matrix]; + [sc setBackgroundColor: [NSColor rowBackgroundColor]]; } } @@ -2697,10 +2700,12 @@ [matrix setDoubleAction: @selector(doDoubleClick:)]; // set new col matrix and release old + [matrix setBackgroundColor: [NSColor rowBackgroundColor]]; [bc setColumnMatrix: matrix]; RELEASE (matrix); } [sc setDocumentView: matrix]; + [sc setBackgroundColor: [NSColor rowBackgroundColor]]; // Loading is different based upon passive/active delegate if (_passiveDelegate)