(node *tview.TreeNode)
| 480 | } |
| 481 | |
| 482 | func treePanelChangeHandler(node *tview.TreeNode) { |
| 483 | go app.QueueUpdateDraw(func() { |
| 484 | // TODO: Implement cancellation |
| 485 | reloadExplorerAttrsPanel(node, CacheEntries) |
| 486 | selectAnchoredAttribute(explorerAttrsPanel) |
| 487 | }) |
| 488 | } |
| 489 | |
| 490 | func explorerRotateFocus() { |
| 491 | currentFocus := app.GetFocus() |
nothing calls this directly
no test coverage detected