From b5f4b19d71b40fc28db82ccb54a0daf92aecb198 Mon Sep 17 00:00:00 2001 From: Aleksi Lahikainen Date: Tue, 8 Sep 2020 16:30:38 +0300 Subject: [PATCH] Add missing indentations not visible in editor --- src/ios/FileOpener2.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ios/FileOpener2.m b/src/ios/FileOpener2.m index 0c93a61..8538ac0 100644 --- a/src/ios/FileOpener2.m +++ b/src/ios/FileOpener2.m @@ -91,9 +91,9 @@ NSString* callbackId = nil; NSArray *positionValues = [command.arguments objectAtIndex:3]; if (![positionValues isEqual:[NSNull null]] && [positionValues count] >= 2) { - rect = CGRectMake(0, 0, [[positionValues objectAtIndex:0] floatValue], [[positionValues objectAtIndex:1] floatValue]); - } else { - rect = CGRectMake(0, 0, 0, 0); + rect = CGRectMake(0, 0, [[positionValues objectAtIndex:0] floatValue], [[positionValues objectAtIndex:1] floatValue]); + } else { + rect = CGRectMake(0, 0, 0, 0); } } else { rect = CGRectMake(0, 0, cont.view.bounds.size.width, cont.view.bounds.size.height);