Apply clip when there are any borders in ios

This commit is contained in:
vakrilov
2017-03-15 13:49:30 +02:00
parent d9d0b7b072
commit 4196b9e50b

View File

@ -414,7 +414,7 @@ export class View extends ViewCommon {
_setNativeClipToBounds() {
let backgroundInternal = this.style.backgroundInternal;
this.nativeView.clipsToBounds = backgroundInternal.hasUniformBorder() || backgroundInternal.getUniformBorderRadius() > 0;
this.nativeView.clipsToBounds = backgroundInternal.hasBorderWidth() || backgroundInternal.hasBorderRadius();
}
}