We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d15b6 commit bbdeea0Copy full SHA for bbdeea0
src/atoms/SlicerPreview.vue
@@ -708,6 +708,7 @@ let activeEndHandler = null;
708
709
const startDragging = (event) => {
710
isRanging.value = true;
711
+
712
showTooltip.value = true;
713
if (!props.enableSelectionDrag) return;
714
@@ -771,6 +772,8 @@ function updateDragging(currentX) {
771
772
const newEnd = newStart + currentRange.value;
773
start.value = newStart;
774
end.value = newEnd;
775
+ emitFutureStart(newStart);
776
+ emitFutureEnd(newEnd);
777
}
778
779
function stopDragging() {
0 commit comments