[bugfix] closes #255 filtering should work as intended now

This commit is contained in:
Marcel Paffrath 2018-07-24 13:54:40 +02:00
parent a9636caf73
commit 9e75f8d4f2

View File

@ -1936,11 +1936,11 @@ class PickDlg(QDialog):
self.zoomAction.trigger()
self.multicompfig.disconnectEvents()
self.cidpress = self.multicompfig.connectPressEvent(self.setIniPick)
if not self.filterActionP.isChecked() and not self.filterActionS.isChecked():
if self.autoFilterAction.isChecked():
self.filterWFData()
else:
self.draw()
if self.autoFilterAction.isChecked():
for filteraction in [self.filterActionP, self.filterActionS]:
filteraction.setChecked(False)
self.filterWFData()
self.draw()
else:
self.draw()
#self.pick_block = self.togglePickBlocker()