project_files/HedgewarsMobile/Classes/MapConfigViewController.m
changeset 3623 f14db208f2fa
parent 3598 a8aa06bae895
child 3625 9f1d79e01a60
--- a/project_files/HedgewarsMobile/Classes/MapConfigViewController.m	Sun Jul 04 00:48:39 2010 +0200
+++ b/project_files/HedgewarsMobile/Classes/MapConfigViewController.m	Sun Jul 04 01:27:41 2010 +0200
@@ -283,6 +283,10 @@
     if (cell == nil) 
         cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
     
+    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
+        cell.textLabel.textColor = [UIColor yellowColor]; //TODO: find proper color
+    }
+    
     if (self.segmentedControl.selectedSegmentIndex != 1) {
         // the % prevents a strange bug that occurs sporadically
         NSString *themeName = [self.themeArray objectAtIndex:row % [self.themeArray count]];