Skip to content

Commit

Permalink
Merge pull request #4189 from silx-kit/fix_image_stack_API
Browse files Browse the repository at this point in the history
silx.gui.plot.ImageStack: fix `_urlIndexes` initialization.
  • Loading branch information
payno authored Nov 4, 2024
2 parents f1ec1c0 + da3a74f commit 95eeb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/silx/gui/plot/ImageStack.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def reset(self) -> None:
"""Clear the plot and remove any link to url"""
self._freeLoadingThreads()
self._urls = None
self._urlIndexes = None
self._urlIndexes = {}
self._urlData = {}
self._current_url = None
self._plot.clear()
Expand Down

0 comments on commit 95eeb53

Please sign in to comment.