Skip to content
Snippets Groups Projects
Commit 93069f02 authored by payno's avatar payno
Browse files

[orangecontrib][conditions] fix not was missing to let some scan pass or not

parent 64a52db7
No related branches found
No related tags found
No related merge requests found
...@@ -78,6 +78,6 @@ class NameFilterOW(widget.OWWidget, OWClient): ...@@ -78,6 +78,6 @@ class NameFilterOW(widget.OWWidget, OWClient):
@Inputs.data_in @Inputs.data_in
def applyfilter(self, scan): def applyfilter(self, scan):
if self.widget.isFiltered(scan): if not self.widget.isFiltered(scan.path):
assert isinstance(scan, TomoBase) assert isinstance(scan, TomoBase)
self.Outputs.data_out.send(scan) self.Outputs.data_out.send(scan)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment