summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorPtyl Dragon <ptyl@cloudon.com>2013-10-24 16:48:28 +0200
committerJan Holesovsky <kendy@collabora.com>2013-11-15 16:51:52 +0100
commitee7f141fb68c4404bdc31c389538d1ee72f2484e (patch)
tree589311f2237a8c71d9261885664cb24a9cf5cefe /ios
parentf2c3fcc3bcf5e2f3264cd37b721f7fbfa0fae3a8 (diff)
now iOS draws something (upside down)
Change-Id: Ibf04322d34605fce30b2fa477de98a3e2ff9c2d1
Diffstat (limited to 'ios')
-rw-r--r--ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTileParametersViewController.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTileParametersViewController.m b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTileParametersViewController.m
index 2381df97de93..be2e144b992f 100644
--- a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTileParametersViewController.m
+++ b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTileParametersViewController.m
@@ -39,12 +39,12 @@ static const CGFloat RENDER_BUTTON_HEIGHT = 50.0f;
}
-(void)initParams{
- self.params = @[[self createParam:@"contextWidth" extractor:^(CGFloat value){self.contextWidth = value;} value:100],
- [self createParam:@"contextHeight" extractor:^(CGFloat value){self.contextHeight = value;} value:100],
+ self.params = @[[self createParam:@"contextWidth" extractor:^(CGFloat value){self.contextWidth = value;} value:300],
+ [self createParam:@"contextHeight" extractor:^(CGFloat value){self.contextHeight = value;} value:300],
[self createParam:@"tilePosX" extractor:^(CGFloat value){self.tilePosX = value;} value:0],
[self createParam:@"tilePosY" extractor:^(CGFloat value){self.tilePosY = value;} value:0],
- [self createParam:@"tileWidth" extractor:^(CGFloat value){self.tileWidth = value;} value:100],
- [self createParam:@"tileHeight" extractor:^(CGFloat value){self.tileHeight = value;} value:100]
+ [self createParam:@"tileWidth" extractor:^(CGFloat value){self.tileWidth = value;} value:300],
+ [self createParam:@"tileHeight" extractor:^(CGFloat value){self.tileHeight = value;} value:300]
];
}