[TIMOB-23226] Windows: Application crashes when setting 'px' in borderRadius on a Ti.UI.View
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Open |
| Resolution | Unresolved |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | n/a |
| Labels | n/a |
| Reporter | Jonas Bjurhult |
| Assignee | Unknown |
| Created | 2016-04-08T11:40:06.000+0000 |
| Updated | 2018-02-28T19:55:56.000+0000 |
Description
Example
index.xml:
<Alloy>
<Window class="container">
<View id='theView'>
</View>
</Window>
</Alloy>
index.tss:
"#theView": {
borderRadius: '16px'
}
Changing the style to the following works:
"#theView": {
borderRadius: 16
}
No comments