(pane string)
| 564 | } |
| 565 | |
| 566 | func (b *FullscreenRendererBackend) MouseScrollDelta(pane string) int { |
| 567 | layout := b.viewportLayout() |
| 568 | switch pane { |
| 569 | case "tasks": |
| 570 | return maxInt(1, layout.TasksLines/2) |
| 571 | case "modal": |
| 572 | return maxInt(1, layout.ModalLines/2) |
| 573 | default: |
| 574 | return maxInt(1, layout.TranscriptLines/2) |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | func (b *FullscreenRendererBackend) CancelSearchMode() { |
| 579 | b.InputMode = "normal" |
no test coverage detected