Skip to content
Snippets Groups Projects
Commit ee7e76bf authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Sometimes profile.mouseUp handlers will be called without a prior call

to profile.mouseDown/Drag
parent fa53b121
No related branches found
No related tags found
No related merge requests found
...@@ -61,12 +61,12 @@ class GLObject(object): ...@@ -61,12 +61,12 @@ class GLObject(object):
this instance, ``name``, which is simply a unique name for this this instance, ``name``, which is simply a unique name for this
instance. instance.
Subclass implementations should call this method, and should perform Subclass implementations must call this method, and should also
any necessary OpenGL initialisation, such as creating textures. perform any necessary OpenGL initialisation, such as creating
textures.
""" """
self.name = '{}_{}'.format(type(self).__name__, id(self)) self.name = '{}_{}'.format(type(self).__name__, id(self))
self.__updateListeners = {} self.__updateListeners = {}
......
...@@ -70,6 +70,11 @@ class OrthoViewProfile(profiles.Profile): ...@@ -70,6 +70,11 @@ class OrthoViewProfile(profiles.Profile):
self._ycanvas = canvasPanel.getYCanvas() self._ycanvas = canvasPanel.getYCanvas()
self._zcanvas = canvasPanel.getZCanvas() self._zcanvas = canvasPanel.getZCanvas()
# This attribute will occasionally store a
# reference to a gl.annotations.Rectangle -
# see the _zoomModeLeftMouse* handlers
self._lastRect = None
def getEventTargets(self): def getEventTargets(self):
""" """
...@@ -229,7 +234,9 @@ class OrthoViewProfile(profiles.Profile): ...@@ -229,7 +234,9 @@ class OrthoViewProfile(profiles.Profile):
mouseDownPos, canvasDownPos = self.getMouseDownLocation() mouseDownPos, canvasDownPos = self.getMouseDownLocation()
canvas.getAnnotations().dequeue(self._lastRect) if self._lastRect is not None:
canvas.getAnnotations().dequeue(self._lastRect)
self._lastRect = None
rectXlen = abs(canvasPos[canvas.xax] - canvasDownPos[canvas.xax]) rectXlen = abs(canvasPos[canvas.xax] - canvasDownPos[canvas.xax])
rectYlen = abs(canvasPos[canvas.yax] - canvasDownPos[canvas.yax]) rectYlen = abs(canvasPos[canvas.yax] - canvasDownPos[canvas.yax])
......
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