Skip to content

Commit

Permalink
fix URI
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Oct 16, 2024
1 parent 036a1ca commit 4f49752
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
import net.preibisch.stitcher.gui.popup.TranslateGroupManuallyPopup;
import net.preibisch.stitcher.gui.popup.VerifyLinksPopup;
import net.preibisch.stitcher.input.FractalImgLoader;
import util.URITools;

public class StitchingExplorerPanel<AS extends SpimData2 >
extends FilteredAndGroupedExplorerPanel< AS > implements ExplorerWindow< AS >
Expand Down Expand Up @@ -863,12 +864,7 @@ public ArrayList< ExplorerWindowSetable > initPopups()

// add link to wiki
popups.add( new LabelPopUp( "Help" ) );
try
{
popups.add( new SimpleHyperlinkPopup("Browse Wiki...", new URI( "https://imagej.net/BigStitcher#Documentation" )) );
}
catch ( URISyntaxException e ) { e.printStackTrace(); }

popups.add( new SimpleHyperlinkPopup("Browse Wiki...", URITools.toURI( "https://imagej.net/BigStitcher#Documentation" )) );

return popups;
}
Expand Down

0 comments on commit 4f49752

Please sign in to comment.