Don't prevent text selection with preventDefault

We should use `user-select: none;` for this.

I think all places are already doing this.
This commit is contained in:
Jordan Eldredge 2019-04-19 09:51:07 -07:00
parent 6132acdf2c
commit 059669f3e5

View file

@ -60,8 +60,6 @@ class WindowManager extends React.Component<Props> {
// The user may be clicking on full screen Milkdrop.
return;
}
// Prevent dragging from highlighting text.
e.preventDefault();
const [moving, stationary] = this.movingAndStationaryNodes(key);