(modalState map[string]any)
| 203 | } |
| 204 | |
| 205 | func (b *FullscreenRendererBackend) ShowModal(modalState map[string]any) { |
| 206 | b.ActiveModalState = cloneMap(modalState) |
| 207 | b.ModalText = FormatFullscreenModal(modalState) |
| 208 | b.FocusedPane = "modal" |
| 209 | b.StatusText = b.formatStatus(b.LastFrame) |
| 210 | b.refreshControls() |
| 211 | } |
| 212 | |
| 213 | func (b *FullscreenRendererBackend) ClearModal() { |
| 214 | b.ActiveModalState = nil |