Fix volume slider on high dpi
This commit is contained in:
parent
128d65c528
commit
ff9e994664
|
@ -6,8 +6,6 @@ const r = require('r-dom');
|
||||||
|
|
||||||
const d3 = require('d3');
|
const d3 = require('d3');
|
||||||
|
|
||||||
const { devicePixelRatio } = window;
|
|
||||||
|
|
||||||
const width = 300;
|
const width = 300;
|
||||||
const height = 18;
|
const height = 18;
|
||||||
|
|
||||||
|
@ -57,15 +55,15 @@ module.exports = class VolumeSlider extends React.Component {
|
||||||
|
|
||||||
handleDragStart() {
|
handleDragStart() {
|
||||||
this._startX = d3.event.x;
|
this._startX = d3.event.x;
|
||||||
this._offsetX = d3.event.sourceEvent.offsetX || (this._lastRenderedX / devicePixelRatio);
|
this._offsetX = d3.event.sourceEvent.offsetX || (this._lastRenderedX);
|
||||||
this.setState({
|
this.setState({
|
||||||
draggingX: clamp(this._offsetX * devicePixelRatio),
|
draggingX: clamp(this._offsetX),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
handleDrag() {
|
handleDrag() {
|
||||||
if (this.state.draggingX !== null) {
|
if (this.state.draggingX !== null) {
|
||||||
const draggingX = ((d3.event.x - this._startX) + this._offsetX) * devicePixelRatio;
|
const draggingX = ((d3.event.x - this._startX) + this._offsetX);
|
||||||
this.setState({
|
this.setState({
|
||||||
draggingX: clamp(draggingX),
|
draggingX: clamp(draggingX),
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user