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

LightBox zoom property range was munged when I re-arranged the

canvasopts properties. Fixed now.
parent 4b3f3e32
No related branches found
No related tags found
No related merge requests found
......@@ -22,3 +22,7 @@ class LightBoxOpts(sceneopts.SceneOpts):
zrange = copy.copy(canvasopts.LightBoxCanvasOpts.zrange)
showGridLines = copy.copy(canvasopts.LightBoxCanvasOpts.showGridLines)
highlightSlice = copy.copy(canvasopts.LightBoxCanvasOpts.highlightSlice)
def __init__(self, *args, **kwargs):
sceneopts.SceneOpts.__init__(self, *args, **kwargs)
self.setConstraint('zoom', 'minval', 10)
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