Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #1101: Updating the perpendicular line handles when done creating #1102

Merged
merged 1 commit into from
Oct 11, 2019
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: 3 additions & 1 deletion src/tools/annotation/bidirectionalTool/addNewMeasurement.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
import triggerEvent from '../../../util/triggerEvent.js';
import getActiveTool from '../../../util/getActiveTool';
import BaseAnnotationTool from '../../base/BaseAnnotationTool';
import updatePerpendicularLineHandles from './utils/updatePerpendicularLineHandles.js';

export default function(evt, interactionType) {
const eventData = evt.detail;
Expand Down Expand Up @@ -61,7 +62,8 @@ export default function(evt, interactionType) {
);
}

// Perpendicular line is not connected to long-line
// Update perpendicular line and disconnect it from the long-line
updatePerpendicularLineHandles(eventData, measurementData);
perpendicularStart.locked = false;

measurementData.invalidated = true;
Expand Down