Description
When setting border properties on Ti.UI.Slider the properties do not appear to change anything
var win = Ti.UI.createWindow({ backgroundColor: 'purple' }),
slider = Ti.UI.createSlider({
backgroundColor: 'orange',
borderWidth: 5,
borderColor: 'yellow',
borderRadius: 5,
width: '50%'
});
win.add(slider);
win.open();
Steps to reproduce
Add the code above to an existing app.js
Build for Windows Platform appc run -p windows
Actual result
Setting border properties does not add a border
Expected result
Setting border properties should add a border
Filed in error