()
| 211 | } |
| 212 | |
| 213 | func (b *FullscreenRendererBackend) ClearModal() { |
| 214 | b.ActiveModalState = nil |
| 215 | b.ModalText = "" |
| 216 | if b.InputEnabled { |
| 217 | b.FocusedPane = "input" |
| 218 | } else { |
| 219 | b.FocusedPane = "transcript" |
| 220 | } |
| 221 | b.StatusText = b.formatStatus(b.LastFrame) |
| 222 | b.refreshControls() |
| 223 | } |
| 224 | |
| 225 | func (b *FullscreenRendererBackend) Shutdown(finalSnapshot RenderFrame) { |
| 226 | b.LastFrame = finalSnapshot |
no test coverage detected