--- a/project_files/HedgewarsMobile/Classes/SingleSchemeViewController.m Sat Oct 08 02:57:30 2011 +0200
+++ b/project_files/HedgewarsMobile/Classes/SingleSchemeViewController.m Sat Oct 08 03:07:04 2011 +0200
@@ -234,8 +234,8 @@
[[self.gameModifierArray objectAtIndex:row] objectForKey:@"image"]]];
cell.imageView.image = image;
[image release];
- [cell.imageView.layer setCornerRadius:7.0f];
- [cell.imageView.layer setMasksToBounds:YES];
+ cell.imageView.layer.cornerRadius = 6.0f;
+ cell.imageView.layer.masksToBounds = YES;
cell.textLabel.text = [[self.gameModifierArray objectAtIndex:row] objectForKey:@"title"];
cell.detailTextLabel.text = [[self.gameModifierArray objectAtIndex:row] objectForKey:@"description"];
cell.detailTextLabel.adjustsFontSizeToFitWidth = YES;