diff --git a/docs/release/release_v1.6.md b/docs/release/release_v1.6.md index 1aca43ce..7e64584c 100644 --- a/docs/release/release_v1.6.md +++ b/docs/release/release_v1.6.md @@ -42,7 +42,7 @@ - Atlas Editor planes can be reordered or turned off (#180) - EXPERIMENTAL: New viewer that displays each blob separately to verify blob classifications (#193) - Image adjustment - - "Merge" option in the ROI panel to merge channels using additive blending (#492) + - "Merge" option in the ROI panel to merge channels using additive blending (#492, #552) - "Blend" option in the image adjustment panel to visualize alignment in overlaid images (#89, #450) - Image adjustment channels are radio buttons for easier selection (#212) - Fixed synchronization between the ROI Editor and image adjustment controls after initialization (#142) diff --git a/magmap/gui/plot_editor.py b/magmap/gui/plot_editor.py index fd073165..5c6ade6e 100644 --- a/magmap/gui/plot_editor.py +++ b/magmap/gui/plot_editor.py @@ -513,7 +513,7 @@ def show_overview(self): imgs2d = [self._get_img2d(0, self.img3d, self.max_intens_proj)] self._channels = [config.channel] cmaps = [config.cmaps] - alphas = self.alpha_img3d + alphas = list(self.alpha_img3d) alpha_is_default = True alpha_blends = [None] shapes = [self._img3d_shapes[0][1:3]]