Display updates the names and then displays the tab bar
()
| 143 | |
| 144 | // Display updates the names and then displays the tab bar |
| 145 | func (t *TabList) Display() { |
| 146 | t.UpdateNames() |
| 147 | if len(t.List) > 1 { |
| 148 | t.TabWindow.Display() |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | func (t *TabList) SetActive(a int) { |
| 153 | t.TabWindow.SetActive(a) |
nothing calls this directly
no test coverage detected