Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Results table auto-formatting: Use decimal places only as needed
Browse files Browse the repository at this point in the history
It turns out that this is already implemented by ResultsTable
from IJ 1.49i onwards and we actually don't need to do anything
but impose it. This complements #9
  • Loading branch information
tferr committed Dec 2, 2014
1 parent 6c1c4f4 commit 260cffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/Sholl_Analysis.java
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public class Sholl_Analysis implements PlugIn, DialogListener {
@Override
public void run( final String arg) {

if (IJ.versionLessThan("1.49c")) return; // this is required for non-fiji users
if (IJ.versionLessThan("1.49i")) return; // this is required for non-fiji users

if (arg.equalsIgnoreCase("sample")) {
img = Sholl_Utils.displaySample();
Expand Down

0 comments on commit 260cffa

Please sign in to comment.