From 3cb5b0fdb36843f9bc82bd1ef9da7ca7dd7cadfd Mon Sep 17 00:00:00 2001 From: Panayot Cankov Date: Fri, 10 Mar 2017 13:26:49 +0200 Subject: [PATCH] Label should clip content --- tns-core-modules/ui/label/label.ios.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tns-core-modules/ui/label/label.ios.ts b/tns-core-modules/ui/label/label.ios.ts index c0eb83349..f7ac2c323 100644 --- a/tns-core-modules/ui/label/label.ios.ts +++ b/tns-core-modules/ui/label/label.ios.ts @@ -129,6 +129,7 @@ export class Label extends TextBase implements LabelDefinition { value = uiColor ? uiColor.CGColor : null; } + this._setNativeClipToBounds(); this.nativeView.layer.backgroundColor = value; }