From 36590439315595ed499cf4f7863707acac46f020 Mon Sep 17 00:00:00 2001 From: Pierre-Luc Paour Date: Mon, 18 Nov 2002 10:32:41 +0000 Subject: [PATCH] White scroller. --- com/gallery/GalleryRemote/AboutBox.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com/gallery/GalleryRemote/AboutBox.java b/com/gallery/GalleryRemote/AboutBox.java index 6c48d88..afb2bb7 100644 --- a/com/gallery/GalleryRemote/AboutBox.java +++ b/com/gallery/GalleryRemote/AboutBox.java @@ -170,7 +170,7 @@ public void paintComponent( Graphics g ) { int lines = ( getHeight() - TOP - BOTTOM ) / height; int y = firstLineOffset; - + g.setColor(new Color(255, 255, 255)); for ( int i = 0; i <= lines; i++ ) { if ( i + firstLine >= 0 && i + firstLine < text.size() ) { String line = (String) text.get( i + firstLine );