diff options
Diffstat (limited to 'ios/shared')
-rw-r--r-- | ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m index f8fcadb4a4f8..1b25648b2c82 100644 --- a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m +++ b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m @@ -31,8 +31,8 @@ } +(CGRect)resized:(MLOAppRoleTileTester *)tester{ - return CGRectMake( (tester.renderer.view.frame.size.width -tester.params.contextWidth)/2.0f, - (tester.renderer.view.frame.size.height -tester.params.contextHeight)/2.0f, + return CGRectMake( 10, + 10, tester.params.contextWidth, tester.params.contextHeight); } |