Skip to content

Commit

Permalink
fix: Updating the perpendicular line handles when done creating (#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoalvesdefaria authored and dannyrb committed Oct 11, 2019
1 parent af903bb commit 4d36462
Showing 1 changed file with 3 additions and 1 deletion.
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

0 comments on commit 4d36462

Please sign in to comment.