Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] fix: fix lag in live mode after mda acquisition #309

Closed
wants to merge 12 commits into from
1 change: 1 addition & 0 deletions src/napari_micromanager/_mda_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def __init__(self, mmcore: CMMCorePlus, viewer: napari.viewer.Viewer) -> None:
# mapping of id -> (zarr.Array, temporary directory) for each layer created
self._tmp_arrays: dict[str, tuple[zarr.Array, tempfile.TemporaryDirectory]] = {}
self._deck: deque[tuple[np.ndarray, MDAEvent]] = deque()
self._mda_running: bool = False

# Add all core connections to this list. This makes it easy to disconnect
# from core when this widget is closed.
Expand Down
Loading