Skip to content

Commit

Permalink
Make Mask the prefix not the suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
niksirbi committed Oct 31, 2023
1 parent a6a4cd5 commit f9a747e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brainglobe_template_builder/napari/_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def mask_widget(
)

# return the mask as a napari Labels layer
return (mask, {"name": f"{image.name}_mask", "opacity": 0.5}, "labels")
return (mask, {"name": f"Mask_{image.name}", "opacity": 0.5}, "labels")


@napari_hook_implementation
Expand Down

0 comments on commit f9a747e

Please sign in to comment.