(patch: Partial<LivePaneState>)
| 1383 | } |
| 1384 | |
| 1385 | patchLivePane(patch: Partial<LivePaneState>): void { |
| 1386 | if (!hasPatchChanges(this.state.livePane, patch)) return; |
| 1387 | Object.assign(this.state.livePane, patch); |
| 1388 | this.updateActivityPane(); |
| 1389 | this.state.ui.requestRender(); |
| 1390 | } |
| 1391 | |
| 1392 | resetLivePane(): void { |
| 1393 | this.state.livePane = { ...INITIAL_LIVE_PANE }; |
no test coverage detected