()
| 623 | } |
| 624 | |
| 625 | func (b *FullscreenRendererBackend) refreshControls() { |
| 626 | b.TranscriptControlText = b.renderTranscriptRegion() |
| 627 | b.TasksControlText = b.renderTasksRegion() |
| 628 | b.ModalControlText = b.renderModalRegion() |
| 629 | b.InputMetaText = b.formatInputMeta() |
| 630 | b.InputReadOnly = !b.isInputEditable() |
| 631 | b.renderScreen() |
| 632 | } |
| 633 | |
| 634 | func (b *FullscreenRendererBackend) syncTranscriptFromFrame(frame RenderFrame) { |
| 635 | if len(frame.TranscriptEntries) == 0 { |
no test coverage detected