Skip to content

Commit

Permalink
Merge pull request micro-manager#107 from henrypinkard/main
Browse files Browse the repository at this point in the history
avoid skipped z position
  • Loading branch information
henrypinkard authored Sep 29, 2023
2 parents 5da498e + f327aab commit b5d2873
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.micro-manager.acqengj</groupId>
<artifactId>AcqEngJ</artifactId>
<version>0.33.1</version>
<version>0.34.0</version>
<packaging>jar</packaging>
<name>AcqEngJ</name>
<description>Java-based Acquisition engine for Micro-Manager</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public AcquisitionEvent copy() {
e.axisPositions_ = (HashMap<String, Object>) axisPositions_.clone();
e.configPreset_ = configPreset_;
e.configGroup_ = configGroup_;
// e.zPosition_ = zPosition_;
e.zPosition_ = zPosition_;
e.stageCoordinates_ = new HashMap<>(stageCoordinates_);
e.stageDeviceNamesToAxisNames_ = new HashMap<>(stageDeviceNamesToAxisNames_);
e.xPosition_ = xPosition_;
Expand Down

0 comments on commit b5d2873

Please sign in to comment.