Skip to content
Snippets Groups Projects
Commit 62cdaf0b authored by Luke Campagnola's avatar Luke Campagnola
Browse files

bugfix: ScatterPlotItem generates any uncached spot items when calling points()

parent b09862d2
No related branches found
No related tags found
No related merge requests found
......@@ -488,9 +488,13 @@ class ScatterPlotItem(GraphicsObject):
#self.sigPointClicked.emit(self, point)
def points(self):
if not self.spotsValid:
self.generateSpots()
return self.spots[:]
def pointsAt(self, pos):
if not self.spotsValid:
self.generateSpots()
x = pos.x()
y = pos.y()
pw = self.pixelWidth()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment