Skip to content
Merged
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
4 changes: 1 addition & 3 deletions src/main/java/sc/fiji/kymographBuilder/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,7 @@ static Roi checkForROIs(Dataset dataset) throws NoLineException {
throw new NoLineException("Please define a line in order to build the kymograph.");
}

if (!"Straight Line".equals(roi.getTypeAsString()) && !"Polyline".equals(roi
.getTypeAsString()))
{
if (!roi.isLine()) {
throw new NoLineException("Please use the Straight Line or Segmented Line selection tool.");
}

Expand Down
Loading