From 2c74f93a6287d5f97b25f1616ec64cc5c33538c9 Mon Sep 17 00:00:00 2001 From: Stepan Hruda Date: Wed, 10 Jan 2018 12:07:33 -0800 Subject: [PATCH] Change setProjectRoot argument to NuclideUri Reviewed By: matthewwithanm Differential Revision: D6624825 fbshipit-source-id: 06df9af5c7be321b19f13efa8125fb10d8e00422 --- React/Views/ScrollView/RCTScrollView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/React/Views/ScrollView/RCTScrollView.m b/React/Views/ScrollView/RCTScrollView.m index fb3d5f2ef..e25a5161c 100644 --- a/React/Views/ScrollView/RCTScrollView.m +++ b/React/Views/ScrollView/RCTScrollView.m @@ -273,7 +273,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init) * Note: Explicitly returning `YES`, instead of relying on the default fixes * (at least) one bug where if you have a UIControl inside a UIScrollView and * tap on the UIControl and then start dragging (to scroll), it won't scroll. - * Chat with andras for more details. + * Chat with @andras for more details. * * In order to have this called, you must have delaysContentTouches set to NO * (which is the not the `UIKit` default). @@ -315,7 +315,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init) UIEdgeInsets contentInset = self.contentInset; CGSize contentSize = self.contentSize; - + // If contentSize has not been measured yet we can't check bounds. if (CGSizeEqualToSize(contentSize, CGSizeZero)) { self.contentOffset = originalOffset;