()
| 500 | } |
| 501 | |
| 502 | func (tr *Tree) Style() { |
| 503 | if !tr.HasChildren() { |
| 504 | tr.SetClosed(true) |
| 505 | } |
| 506 | tr.WidgetBase.Style() |
| 507 | tr.Indent.ToDots(&tr.Styles.UnitContext) |
| 508 | tr.Indent.Dots = math32.Ceil(tr.Indent.Dots) |
| 509 | } |
| 510 | |
| 511 | func (tr *Tree) setBranchState() { |
| 512 | br := tr.Branch |
no test coverage detected