(self, flow: flow.Flow)
| 191 | signals.window_refresh.send() |
| 192 | |
| 193 | def flow_changed(self, flow: flow.Flow) -> None: |
| 194 | if self.master.view.focus.flow: |
| 195 | if flow.id == self.master.view.focus.flow.id: |
| 196 | self.focus_changed() |
| 197 | |
| 198 | def focus_changed(self, *args, **kwargs): |
| 199 | """ |
nothing calls this directly
no test coverage detected