Commit 0ee61e72 authored by zheng yu's avatar zheng yu Committed by cinwell.li

fix: fixed losing focus when drag slider button fast or right click slider button. (#1723)

parent 22b70373
......@@ -200,6 +200,7 @@
this.setPosition(this.newPos);
window.removeEventListener('mousemove', this.onDragging);
window.removeEventListener('mouseup', this.onDragEnd);
window.removeEventListener('contextmenu', this.onDragEnd);
}
},
......@@ -208,6 +209,7 @@
this.onDragStart(event);
window.addEventListener('mousemove', this.onDragging);
window.addEventListener('mouseup', this.onDragEnd);
window.addEventListener('contextmenu', this.onDragEnd);
}
},
......
......@@ -20,7 +20,7 @@
margin-right: 160px;
width: auto;
}
&.disabled {
cursor: default;
......@@ -79,6 +79,7 @@
transform: translateX(-50%);
background-color: transparent;
text-align: center;
user-select: none;
.el-tooltip {
line-height: 1;
......@@ -113,6 +114,7 @@
background-color: var(--slider-main-background-color);
border-radius: 50%;
transition: .2s;
user-select: none;
&:hover,
&.hover,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment