diff --git a/Photo/GalleryViewController.m b/Photo/GalleryViewController.m index f1356c0..9667230 100644 --- a/Photo/GalleryViewController.m +++ b/Photo/GalleryViewController.m @@ -216,8 +216,19 @@ - (NSInteger)quiltViewNumberOfColumns:(TMQuiltView *)quiltView { if ([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeLeft || [[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeRight) { + + // is iPad + if ([DisplayUtilities isIPad]){ + return 6; + } + return 3; } else { + // is iPad + if ([DisplayUtilities isIPad]){ + return 4; + } + return 2; } }