[AC-221] new behavior of properties
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Closed |
| Resolution | Needs more info |
| Resolution Date | 2015-07-20T18:20:15.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | n/a |
| Labels | Android,, Properties, iOS, |
| Reporter | Joachim Mollin |
| Assignee | Radamantis Torres-Lechuga |
| Created | 2015-07-11T21:49:01.000+0000 |
| Updated | 2015-07-20T18:20:15.000+0000 |
Description
In version 4.0.0 and before I use:
wardList.left = 0;
wardList.width = 0.9*(epr.maxX);
Now in 4.1.0 and 4.2.0 its not longer working and i must use
wardList.setLeft(0);
wardList.setWidth(0.9*epr.maxX);
[~mollin] can you please attach a test case and steps to reproduce the issue? Thanks
I don't have more. The whole program code ist too large