Clears only the unmarked flows.
(self)
| 368 | |
| 369 | @command.command("view.clear_unmarked") |
| 370 | def clear_not_marked(self) -> None: |
| 371 | """ |
| 372 | Clears only the unmarked flows. |
| 373 | """ |
| 374 | for flow in self._store.copy().values(): |
| 375 | if not flow.marked: |
| 376 | self._store.pop(flow.id) |
| 377 | |
| 378 | self._refilter() |
| 379 | self.sig_store_refresh.send() |
| 380 | |
| 381 | # View Settings |
| 382 | @command.command("view.settings.getval") |