Skip to content

Commit 925a3dd

Browse files
Merge pull request #1497 from cornerstonejs/fix/issue-1464
fix(moveNewHandler): Avoid ghost annotations on fast mouse events
2 parents 9ea015d + c0c1c13 commit 925a3dd

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/eventDispatchers/mouseEventHandlers/addNewMeasurement.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export default function(evt, tool) {
3232
? moveHandle
3333
: moveNewHandle;
3434

35+
const timestamp = new Date().getTime();
36+
3537
handleMover(
3638
eventData,
3739
tool.name,
@@ -44,7 +46,18 @@ export default function(evt, tool) {
4446
return;
4547
}
4648

47-
if (success) {
49+
const hasThreshold =
50+
tool.configuration &&
51+
Object(tool.configuration).hasOwnProperty(
52+
'measurementCreationThreshold'
53+
);
54+
55+
const isTooFast = hasThreshold
56+
? new Date().getTime() - timestamp <
57+
tool.configuration.measurementCreationThreshold
58+
: false;
59+
60+
if (success && isTooFast === false) {
4861
const eventType = EVENTS.MEASUREMENT_COMPLETED;
4962
const eventData = {
5063
toolName: tool.name,

0 commit comments

Comments
 (0)