()
| 131 | } |
| 132 | |
| 133 | func (el *extList) createModal() *tview.Modal { |
| 134 | m := tview.NewModal() |
| 135 | m.SetBackgroundColor(tcell.ColorPurple) |
| 136 | m.SetDoneFunc(func(_ int, _ string) { |
| 137 | el.ui.Pages.SwitchToPage("main") |
| 138 | el.Refresh() |
| 139 | }) |
| 140 | |
| 141 | return m |
| 142 | } |
| 143 | |
| 144 | func (el *extList) toggleSelected(verb string) { |
| 145 | ee, ix := el.FindSelected() |