SetCurrentItem wraps the list method to match the interface.
(index int)
| 43 | |
| 44 | // SetCurrentItem wraps the list method to match the interface. |
| 45 | func (vl *VMList) SetCurrentItem(index int) *tview.List { |
| 46 | return vl.List.SetCurrentItem(index) |
| 47 | } |
| 48 | |
| 49 | // SetApp sets the parent app reference for focus management. |
| 50 | func (vl *VMList) SetApp(app *App) { |
nothing calls this directly
no test coverage detected