mirror of
https://github.com/Team4388/autoPlanner2025.git
synced 2026-06-09 00:38:05 -06:00
More button editor functionality added
This commit is contained in:
@@ -11,7 +11,7 @@ class PathPlanner(QMainWindow):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
self.setWindowTitle("Auto Planner")
|
||||
self.setWindowTitle("Path Planner")
|
||||
|
||||
self.coordinates = np.empty((0, 2), dtype=int)
|
||||
self.controlPoints = []
|
||||
@@ -130,7 +130,6 @@ class PathPlanner(QMainWindow):
|
||||
self.drawScene()
|
||||
self.buttonEditor.updateScene()
|
||||
|
||||
|
||||
def mouseMoveEvent(self, event: QMouseEvent):
|
||||
pos = self.imageLabel.mapFrom(self, event.position().toPoint())
|
||||
x, y = pos.x(), pos.y()
|
||||
|
||||
Reference in New Issue
Block a user