ShowStatus sets the visibility of the status lines at the bottom of the table
(show bool)
| 564 | |
| 565 | // ShowStatus sets the visibility of the status lines at the bottom of the table |
| 566 | func (t *Table) ShowStatus(show bool) { |
| 567 | |
| 568 | if t.statusPanel.Visible() == show { |
| 569 | return |
| 570 | } |
| 571 | t.statusPanel.SetVisible(show) |
| 572 | t.recalcStatus() |
| 573 | t.recalc() |
| 574 | } |
| 575 | |
| 576 | // SetStatusText sets the text of status line at the bottom of the table |
| 577 | // It does not change its current visibility |
nothing calls this directly
no test coverage detected