shots no longer None if they are deleted, but flag = 0
This commit is contained in:
parent
cfbcc9d362
commit
09f0cd3e71
@ -160,7 +160,7 @@ class regions(object):
|
|||||||
|
|
||||||
def highlightPicksForShot(self, shot, annotations = False):
|
def highlightPicksForShot(self, shot, annotations = False):
|
||||||
for traceID in shot.getTraceIDlist():
|
for traceID in shot.getTraceIDlist():
|
||||||
if shot.getPick(traceID) is not None:
|
if shot.getFlag(traceID) is not 0:
|
||||||
self.highlightPick(shot, traceID, annotations)
|
self.highlightPick(shot, traceID, annotations)
|
||||||
self.refreshFigure()
|
self.refreshFigure()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user