diff -r 499748f6e80f -r 4bf74e158f44 project_files/HedgewarsMobile/Classes/MapConfigViewController.m --- a/project_files/HedgewarsMobile/Classes/MapConfigViewController.m Tue Dec 07 01:18:43 2010 +0100 +++ b/project_files/HedgewarsMobile/Classes/MapConfigViewController.m Wed Dec 08 14:47:52 2010 +0100 @@ -139,6 +139,7 @@ cell.textLabel.adjustsFontSizeToFitWidth = YES; cell.textLabel.minimumFontSize = 7; cell.textLabel.textColor = UICOLOR_HW_YELLOW_TEXT; + cell.textLabel.backgroundColor = [UIColor clearColor]; if (isRandomness()) { UIImage *image = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@/icon.png",THEMES_DIRECTORY(),labelString]]; @@ -154,7 +155,7 @@ } else cell.accessoryView = nil; - cell.backgroundColor = [UIColor blackColor]; + cell.backgroundColor = UICOLOR_HW_ALMOSTBLACK; return cell; }