(node *tview.TreeNode)
| 104 | } |
| 105 | |
| 106 | func reloadParentNode(node *tview.TreeNode) *tview.TreeNode { |
| 107 | parent := getParentNode(node, treePanel) |
| 108 | |
| 109 | if parent != nil { |
| 110 | unloadChildren(parent) |
| 111 | loadChildren(parent) |
| 112 | } |
| 113 | |
| 114 | go func() { |
| 115 | app.Draw() |
| 116 | }() |
| 117 | |
| 118 | return parent |
| 119 | } |
| 120 | |
| 121 | func reloadExplorerAttrsPanel(node *tview.TreeNode, useCache bool) { |
| 122 | reloadAttributesPanel(node, explorerAttrsPanel, useCache, &explorerCache) |
no test coverage detected