Skip to content

Commit

Permalink
increase size of cache dict to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeSullivan7 committed Dec 13, 2024
1 parent dcc884e commit 33f793f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mantidimaging/gui/windows/live_viewer/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def __init__(self, presenter: LiveViewerWindowPresenter):
self.mean: np.ndarray = np.empty(0)
self.mean_paths: set[Path] = set()
self.roi: SensibleROI | None = None
self.image_cache = ImageCache(max_cache_size=10)
self.image_cache = ImageCache(max_cache_size=100)
self.calc_mean_all_chunks_thread = None

@property
Expand Down

0 comments on commit 33f793f

Please sign in to comment.