Merge "Switch spline ui to drag and drop only"
diff --git a/frc971/control_loops/python/path_edit.py b/frc971/control_loops/python/path_edit.py
index ed500d7..5070988 100755
--- a/frc971/control_loops/python/path_edit.py
+++ b/frc971/control_loops/python/path_edit.py
@@ -404,7 +404,7 @@
self.mousex, self.mousey = self.input_transform.transform_point(
event.x, event.y)
if self.mode == Mode.kEditing:
- if self.index_of_edit > -1 and self.held_x != self.mousex:
+ if self.index_of_edit > -1:
self.points.setSplines(self.spline_edit, self.index_of_edit,
self.mousex,
self.mousey)