I'm on vacation right now, so I'm using OSX on my macbook instead of Windows 7.  I ran into a GUI issue that I couldn't figure out the proper way to fix.  When I selected an item in the Item Manager (and I assume other lists, though I didn't check thoroughly), I had dark text on a dark background color (they may have been the same color), making it impossible to read the item name.  I tracked down the following code responsible for that in ListCellRendererFactory:
	
	
	
		
This makes it look like I could set "textHighlightText" somewhere to make the text a sane color.  Google pointed me to swing.properties, which I tracked down and then had no clue what to do with it.  In the end I just changed the code to use color = "white"; (since I saw that it was done that way before), but I'm wondering how it's meant to be changed.
				
			
		Code:
	
	if ( isSelected )
{
 	setForeground( UIManager.getColor( "textHighlightText" ) );
} 
	 
 
		