added "mask" key check on setPen as well
Signed-off-by: Nicholas Tan Jerome <nicholas.jerome@kit.edu>
This commit is contained in:
parent
884df4934a
commit
7356126c3d
@ -421,7 +421,7 @@ class ScatterPlotItem(GraphicsObject):
|
||||
|
||||
if len(args) == 1 and (isinstance(args[0], np.ndarray) or isinstance(args[0], list)):
|
||||
pens = args[0]
|
||||
if kargs['mask'] is not None:
|
||||
if if 'mask' in kargs and kargs['mask'] is not None:
|
||||
pens = pens[kargs['mask']]
|
||||
if len(pens) != len(dataSet):
|
||||
raise Exception("Number of pens does not match number of points (%d != %d)" % (len(pens), len(dataSet)))
|
||||
|
Loading…
Reference in New Issue
Block a user