[update] changed plot/filter behavior for 3comp window
This commit is contained in:
parent
fb4753ca83
commit
549700bf7a
1
pylot/RELEASE-VERSION
Normal file
1
pylot/RELEASE-VERSION
Normal file
@ -0,0 +1 @@
|
||||
c393-dirty
|
@ -1203,6 +1203,7 @@ class PickDlg(QDialog):
|
||||
self.multicompfig.draw()
|
||||
self.multicompfig.setFocus()
|
||||
|
||||
|
||||
# setup ui
|
||||
self.setupUi()
|
||||
|
||||
@ -2137,6 +2138,9 @@ class PickDlg(QDialog):
|
||||
return not self.pick_block
|
||||
|
||||
def filterWFData(self, phase=None):
|
||||
self.plotWFData(phase=phase, filter=True)
|
||||
|
||||
def plotWFData(self, phase=None, filter=False):
|
||||
if self.pick_block:
|
||||
return
|
||||
if not phase:
|
||||
@ -2145,8 +2149,8 @@ class PickDlg(QDialog):
|
||||
self.cur_ylim = self.multicompfig.axes[0].get_ylim()
|
||||
#self.multicompfig.updateCurrentLimits()
|
||||
data = self.getWFData().copy()
|
||||
old_title = self.multicompfig.axes[0].get_title()
|
||||
title = None
|
||||
title = self.getStation()
|
||||
if filter:
|
||||
filtoptions = None
|
||||
if phase:
|
||||
filtoptions = self.getFilterOptions(self.getPhaseID(phase)).parseFilterOptions()
|
||||
@ -2156,7 +2160,6 @@ class PickDlg(QDialog):
|
||||
# filtoptions = FilterOptionsDialog.getFilterObject()
|
||||
# filtoptions = filtoptions.parseFilterOptions()
|
||||
|
||||
title = self.getStation()
|
||||
if filtoptions is not None:
|
||||
data.filter(**filtoptions)
|
||||
title += '({} filtered'.format(filtoptions['type'])
|
||||
|
Loading…
Reference in New Issue
Block a user