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
This commit is contained in:
Nick Lockwood 2016-01-08 15:41:52 -08:00 committed by facebook-github-bot-7
parent 40526b8e37
commit 336984214f

View File

@ -27,4 +27,9 @@
} }
} }
- (void)reactSetInheritedBackgroundColor:(UIColor *)inheritedBackgroundColor
{
self.backgroundColor = inheritedBackgroundColor;
}
@end @end