We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9765d4 commit b650bbbCopy full SHA for b650bbb
tns-core-modules/ui/segmented-bar/segmented-bar.android.ts
@@ -283,7 +283,7 @@ export class SegmentedBarStyler implements style.Styler {
283
let vg = <android.view.ViewGroup>tabHost.getTabWidget().getChildTabViewAt(tabIndex);
284
285
var backgroundDrawable = vg.getBackground();
286
- if (android.os.Build.VERSION.SDK_INT >= 21 && backgroundDrawable && types.isFunction(backgroundDrawable.setColorFilter)) {
+ if (android.os.Build.VERSION.SDK_INT > 21 && backgroundDrawable && types.isFunction(backgroundDrawable.setColorFilter)) {
287
backgroundDrawable.setColorFilter(newValue, android.graphics.PorterDuff.Mode.SRC_IN);
288
} else {
289
let stateDrawable = new android.graphics.drawable.StateListDrawable();
0 commit comments