1
0
Fork 0

🐛 Fixed timing issue in margin slider

This commit is contained in:
Joost De Cock 2019-05-10 09:49:34 +02:00
parent 34373afe26
commit dc61c767fe

View file

@ -18,7 +18,7 @@ const DraftSettingMargin = props => {
setValue(newValue);
if (evt.type !== "mousemove") props.updateValue("margin", newValue);
} else {
if (evt.type !== "mousemove") props.updateValue("margin", newValue);
props.updateValue("margin", value);
}
};