From f93174d33e788f2dbe1ebf2a45b7dc26cd6ce144 Mon Sep 17 00:00:00 2001 From: Chris Yang Date: Tue, 25 Jun 2019 18:26:31 -0700 Subject: [PATCH] fix build breakage on PlatformViews.mm (flutter/engine#9495) --- .../darwin/ios/framework/Source/FlutterPlatformViews.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm b/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm index b69b1e870d..25f7ad943c 100644 --- a/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm +++ b/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm @@ -230,7 +230,7 @@ UIView* FlutterPlatformViewsController::ReconstructClipViewsChain(int number_of_ void FlutterPlatformViewsController::ApplyMutators(const MutatorsStack& mutators_stack, UIView* embedded_view) { - FML_DCHECK(CATransform3DEqualToTransform(head.layer.transform, CATransform3DIdentity)); + FML_DCHECK(CATransform3DEqualToTransform(embedded_view.layer.transform, CATransform3DIdentity)); UIView* head = embedded_view; head.clipsToBounds = YES;