Skip to content

Commit

Permalink
[TIMOB-26187] Fix Ti.UI.CardView borderRadius (#10157)
Browse files Browse the repository at this point in the history
  • Loading branch information
garymathews authored and hansemannn committed Jul 12, 2018
1 parent c13eca8 commit aef3c1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -363,4 +363,10 @@ public void propertyChanged(String key, Object oldValue, Object newValue, KrollP
super.propertyChanged(key, oldValue, newValue, proxy);
}
}

@Override
protected boolean hasBorder(KrollDict d)
{
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ private boolean hasGradient(KrollDict d)
return d.containsKeyAndNotNull(TiC.PROPERTY_BACKGROUND_GRADIENT);
}

private boolean hasBorder(KrollDict d)
protected boolean hasBorder(KrollDict d)
{
return d.containsKeyAndNotNull(TiC.PROPERTY_BORDER_COLOR)
|| (d.containsKeyAndNotNull(TiC.PROPERTY_BORDER_WIDTH)
Expand Down

0 comments on commit aef3c1f

Please sign in to comment.