[AC-6085] Cannot hide bottom border in Window bar when using Large Titles
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Closed |
| Resolution | Not Our Bug |
| Resolution Date | 2019-01-04T13:56:57.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Titanium SDK & CLI |
| Labels | n/a |
| Reporter | Matthew Delmarter |
| Assignee | Shak Hossain |
| Created | 2018-12-31T22:45:24.000+0000 |
| Updated | 2019-01-04T13:56:57.000+0000 |
Hello, Please share a reproducible sample code for us to test the issue. Thanks.
Actually after creating a clean test case I managed to get this working. For others who look here, here is the cleanest working sample code, using [this](http://abload.de/img/dottjz0w.png) 1 x 1px transparent png image:
This code works with largeTitles and normal window titles. This issue can be closed. So sorry for mucking you around.var win = Titanium.UI.createWindow({ title: "Magic!", largeTitleEnabled: true, barImage: "dot.png", hideShadow: true }); var nav = Ti.UI.iOS.createNavigationWindow({ window: win }); nav.open();