applyResizerStyle applies the status style
()
| 1573 | |
| 1574 | // applyResizerStyle applies the status style |
| 1575 | func (t *Table) applyResizerStyle() { |
| 1576 | |
| 1577 | s := t.styles.Resizer |
| 1578 | t.resizerPanel.SetBordersFrom(&s.Border) |
| 1579 | t.resizerPanel.SetBordersColor4(&s.BorderColor) |
| 1580 | t.resizerPanel.SetColor4(&s.BgColor) |
| 1581 | } |
| 1582 | |
| 1583 | // tableSortString is an internal type implementing the sort.Interface |
| 1584 | // and is used to sort a table column interpreting its values as strings |
no test coverage detected