We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e05c6 commit 445e6cfCopy full SHA for 445e6cf
dpx/srxplanargui/live.py
@@ -104,14 +104,8 @@ def addNewImagesToGetXgui(self, filelist):
104
:param filelist: list of full path of new images
105
'''
106
self.addfiles.refreshdatalist = True
107
-
108
newdatacontainers = self.getxgui.selectfiles.addFiles(filelist)
109
- self.last10data.extend(newdatacontainers)
110
- self.last10data = self.last10data[-10:]
111
- if (self.liveplot != None) and (self.liveplot in self.getxgui.plots):
112
- self.liveplot.datacontainers = self.last10data
113
- else:
114
- self.liveplot, liveplotpanel = self.getxgui.createNewPlot(newdatacontainers)
+ self.getxgui.createNewPlot(newdatacontainers)
115
return
116
117
helpbutton_action = \
0 commit comments