Add explanatory comment

This commit is contained in:
Luke Campagnola 2018-09-28 16:02:14 -07:00 committed by GitHub
parent 9bfdda06a6
commit 6b26245e50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1069,6 +1069,10 @@ class AxisItem(GraphicsWidget):
ret = self.linkedView().mouseDragEvent(event, axis=1)
else:
ret = self.linkedView().mouseDragEvent(event, axis=0)
# Ignore event because if grid lines are enabled, we don't want the
# AxisItem to eat events meant for the ViewBox (see PR #565). A better
# solution here is to have grid lines drawn by a separate item inside the
# viewbox.
event.ignore()
return ret