Content-Length: 988 | pFad | http://github.com/NativeScript/NativeScript/pull/10516.patch

thub.com From 35e357897b349ce9ac429af023b246a00de8b522 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Sun, 14 Apr 2024 20:40:47 -0700 Subject: [PATCH] fix(android): image tintColor setter closes https://github.com/NativeScript/NativeScript/issues/10515 --- packages/core/ui/image/index.android.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/ui/image/index.android.ts b/packages/core/ui/image/index.android.ts index 5a89a248e1..6de990c73b 100644 --- a/packages/core/ui/image/index.android.ts +++ b/packages/core/ui/image/index.android.ts @@ -161,10 +161,10 @@ export class Image extends ImageBase { return undefined; } [tintColorProperty.setNative](value: Color) { - if (value === undefined) { - this.nativeViewProtected.clearColorFilter(); - } else { + if (value) { this.nativeViewProtected.setColorFilter(value.android); + } else { + this.nativeViewProtected.clearColorFilter(); } }








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/NativeScript/NativeScript/pull/10516.patch

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy