Skip to content
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
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

Last change: 11-JUN-2026 CEST
Last change: 18-JUN-2026 CEST

## 0.10.3
- Fixed total pick area in the .yamls for circular and square picks (Render)
- Fixed plotting x and y in "Select picks (trace) in Render"

## 0.10.2
- Rotations use quaterions for unambiguous workflow, fixing bugs [#673](https://github.com/jungmannlab/picasso/issues/673), [#674](https://github.com/jungmannlab/picasso/issues/674) and [#675](https://github.com/jungmannlab/picasso/issues/675)
Expand Down
11 changes: 4 additions & 7 deletions picasso/gui/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -9219,8 +9219,10 @@ def select_traces(self) -> None:
+ "."
)
if locs_.size:
fig.axes[0].set_ylim(yvec[yvec > 0].min(), yvec.max())
fig.axes[1].set_ylim(yvec[yvec > 0].min(), yvec.max())
for ax, col in zip(fig.axes[:2], ("x", "y")):
lo, hi = locs_[col].min(), locs_[col].max()
if lo != hi:
ax.set_ylim(lo, hi)
plt.setp(fig.axes[0].get_xticklabels(), visible=False)
plt.setp(fig.axes[1].get_xticklabels(), visible=False)

Expand Down Expand Up @@ -10601,11 +10603,6 @@ def save_picked_locs(self, path: str, channel: int) -> None:
# save picked locs with .yaml
if locs is not None:
pick_info = self._build_base_pick_info()
# correct for the total area for certain shapes
if self._pick_shape in ["Circle", "Square"]:
pick_info["Area (um^2)"] = pick_info["Area (um^2)"] * len(
self._picks
)
self._add_shape_specific_info(pick_info)
io.save_locs(path, locs, self.infos[channel] + [pick_info])

Expand Down
2 changes: 1 addition & 1 deletion picasso/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.2"
__version__ = "0.10.3"
Loading