From 336984214f65ddc5cfb007383b4428a9fb7b293b Mon Sep 17 00:00:00 2001 From: Nick Lockwood Date: Fri, 8 Jan 2016 15:41:52 -0800 Subject: [PATCH] Fixed ART background color Summary: public Disabling background color propagation had the unexpected effect of turning ART views black. This diff re-enabled propagation for ART views. Reviewed By: jingc Differential Revision: D2816402 fb-gh-sync-id: f2a4c44f3b4a16e04cbf6051391bb8fb1c0a7ed2 --- Libraries/ART/ARTSurfaceView.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Libraries/ART/ARTSurfaceView.m b/Libraries/ART/ARTSurfaceView.m index 8949e43c3..f5c13651b 100644 --- a/Libraries/ART/ARTSurfaceView.m +++ b/Libraries/ART/ARTSurfaceView.m @@ -27,4 +27,9 @@ } } +- (void)reactSetInheritedBackgroundColor:(UIColor *)inheritedBackgroundColor +{ + self.backgroundColor = inheritedBackgroundColor; +} + @end