show only on project

This commit is contained in:
iLLiCiTiT 2020-08-20 17:45:59 +02:00
parent 97b42d8703
commit 07b34dec92

View file

@ -53,7 +53,7 @@ class PushFrameValuesToTaskAction(BaseAction):
valid_selection = False
for ent in event["data"]["selection"]:
# Ignore entities that are not tasks or projects
if ent["entityType"].lower() in ["show", "task"]:
if ent["entityType"].lower() == "show":
valid_selection = True
break