LT-340: Prevent Target, Non-Target, and qualitative (CR/NE/EX) tools from disappearing when dragged offscreen
This commit is contained in:
parent
0483ecd7a3
commit
dcd7e3f1c5
@ -47,6 +47,7 @@
|
|||||||
highlight: true,
|
highlight: true,
|
||||||
active: false,
|
active: false,
|
||||||
drawnIndependently: true,
|
drawnIndependently: true,
|
||||||
|
allowedOutsideImage: true,
|
||||||
index: 0
|
index: 0
|
||||||
},
|
},
|
||||||
end: {
|
end: {
|
||||||
@ -55,6 +56,7 @@
|
|||||||
highlight: true,
|
highlight: true,
|
||||||
active: true,
|
active: true,
|
||||||
drawnIndependently: true,
|
drawnIndependently: true,
|
||||||
|
allowedOutsideImage: true,
|
||||||
index: 1
|
index: 1
|
||||||
},
|
},
|
||||||
textBox: {
|
textBox: {
|
||||||
@ -73,6 +75,7 @@
|
|||||||
active: false,
|
active: false,
|
||||||
locked: true, // If perpendicular line is connected to long-line
|
locked: true, // If perpendicular line is connected to long-line
|
||||||
drawnIndependently: true,
|
drawnIndependently: true,
|
||||||
|
allowedOutsideImage: true,
|
||||||
index: 2
|
index: 2
|
||||||
},
|
},
|
||||||
perpendicularEnd: {
|
perpendicularEnd: {
|
||||||
@ -81,6 +84,7 @@
|
|||||||
highlight: true,
|
highlight: true,
|
||||||
active: false,
|
active: false,
|
||||||
drawnIndependently: true,
|
drawnIndependently: true,
|
||||||
|
allowedOutsideImage: true,
|
||||||
index: 3
|
index: 3
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -125,12 +125,14 @@ import { OHIF } from 'meteor/ohif:core';
|
|||||||
start: {
|
start: {
|
||||||
x: mouseEventData.currentPoints.image.x,
|
x: mouseEventData.currentPoints.image.x,
|
||||||
y: mouseEventData.currentPoints.image.y,
|
y: mouseEventData.currentPoints.image.y,
|
||||||
|
allowedOutsideImage: true,
|
||||||
highlight: true,
|
highlight: true,
|
||||||
active: false
|
active: false
|
||||||
},
|
},
|
||||||
end: {
|
end: {
|
||||||
x: mouseEventData.currentPoints.image.x,
|
x: mouseEventData.currentPoints.image.x,
|
||||||
y: mouseEventData.currentPoints.image.y,
|
y: mouseEventData.currentPoints.image.y,
|
||||||
|
allowedOutsideImage: true,
|
||||||
highlight: true,
|
highlight: true,
|
||||||
active: false
|
active: false
|
||||||
},
|
},
|
||||||
|
|||||||
@ -152,12 +152,14 @@
|
|||||||
start: {
|
start: {
|
||||||
x: mouseEventData.currentPoints.image.x,
|
x: mouseEventData.currentPoints.image.x,
|
||||||
y: mouseEventData.currentPoints.image.y,
|
y: mouseEventData.currentPoints.image.y,
|
||||||
|
allowedOutsideImage: true,
|
||||||
highlight: true,
|
highlight: true,
|
||||||
active: false
|
active: false
|
||||||
},
|
},
|
||||||
end: {
|
end: {
|
||||||
x: mouseEventData.currentPoints.image.x,
|
x: mouseEventData.currentPoints.image.x,
|
||||||
y: mouseEventData.currentPoints.image.y,
|
y: mouseEventData.currentPoints.image.y,
|
||||||
|
allowedOutsideImage: true,
|
||||||
highlight: true,
|
highlight: true,
|
||||||
active: false
|
active: false
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user