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

Cursor not drawn out of bounds on lb canvas

parent 8ccc4c8b
No related branches found
No related tags found
No related merge requests found
......@@ -162,6 +162,12 @@ class LightBoxCanvas(slicecanvas.SliceCanvas):
return tuple(pos)
def getTotalRows(self):
"""Returns the total number of rows that may be displayed.
"""
return self._totalRows
def __init__(self, imageList, zax=0):
"""Create a :class:`LightBoxCanvas` object.
......@@ -213,12 +219,6 @@ class LightBoxCanvas(slicecanvas.SliceCanvas):
'{}_zPosChanged'.format(self.name),
self._zPosChanged)
def getTotalRows(self):
"""Returns the total number of rows that may be displayed.
"""
return self._totalRows
def _slicePropsChanged(self, *a):
"""Called when any of the slice properties change. Regenerates slice
......@@ -515,9 +515,18 @@ class LightBoxCanvas(slicecanvas.SliceCanvas):
ylen = self.imageList.bounds.getLen(self.yax)
xmin = self.imageList.bounds.getLo( self.xax)
ymin = self.imageList.bounds.getLo( self.yax)
row = self._totalRows - int(np.floor(sliceno / self.ncols)) - 1
row = int(np.floor(sliceno / self.ncols))
col = int(np.floor(sliceno % self.ncols))
# don't draw the cursor if it is on a
# non-existent or non-displayed slice
if sliceno > self._nslices: return
if row < self.topRow: return
if row > self.topRow + self.nrows: return
# in GL space, the top row is actually the bottom row
row = self._totalRows - row - 1
xpos, ypos = self.worldToCanvas(*self.pos.xyz)
xverts = np.zeros((2, 3))
......
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