Skip to content

Commit

Permalink
v.0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ekatrukha committed Dec 5, 2023
1 parent b446296 commit 5e8af4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/bigtrace/BigTrace.java
Original file line number Diff line number Diff line change
Expand Up @@ -497,13 +497,13 @@ public void actionReversePoints()
{
int nRoiType = roiManager.getActiveRoi().getType();
//continue tracing for the selected tracing
if(nRoiType ==Roi3D.POLYLINE)
if(nRoiType == Roi3D.POLYLINE)
{
roiManager.getActiveRoi().reversePoints();

}

if(nRoiType ==Roi3D.LINE_TRACE)
if(nRoiType == Roi3D.LINE_TRACE)
{
roiManager.getActiveRoi().reversePoints();
if(bTraceMode)
Expand All @@ -512,7 +512,7 @@ public void actionReversePoints()
btdata.nPointsInTraceBox=1;
}
}
repaintScene();
repaintBVV();
}

}
Expand Down

0 comments on commit 5e8af4d

Please sign in to comment.