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

Fix remembering the labels image opacity #552

Merged
merged 2 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/release/release_v1.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion magmap/gui/plot_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down