nuke: subset with mixed letter sizes

This commit is contained in:
Jakub Jezek 2022-12-09 12:35:41 +01:00
parent 853bc96217
commit a7a2731f05
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -611,7 +611,7 @@ def get_created_node_imageio_setting_legacy(nodeclass, creator, subset):
if (
onode["subsets"]
and not any(re.search(s, subset.lower()) for s in onode["subsets"])
and not any(re.search(s.lower(), subset.lower()) for s in onode["subsets"])
):
continue
@ -704,7 +704,7 @@ def get_imageio_node_override_setting(
if (
onode["subsets"]
and not any(re.search(s, subset.lower()) for s in onode["subsets"])
and not any(re.search(s.lower(), subset.lower()) for s in onode["subsets"])
):
continue