-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix 309 #314
Fix 309 #314
Conversation
Nice work! Could you increment the version too? Then I'll make a new release for it. |
Done ! |
Good stuff again David! 👍 |
Awesome work @davidlatwe |
Thanks :) |
Yes, that is all fine! :) One question though, that I noticed elsewhere as well, how come the instances are green, and yet checkable? :O I thought they were green only after having been processed, at which point they would not be checkable anymore? |
Oh and I remembered you are able to make releases too, you are most welcome to do that here as well! |
The reason it's green is that there's a plugin printing log message for every instances in collecting phase. class ListHeros(pyblish.api.InstancePlugin):
order = pyblish.api.CollectorOrder + 0.1
def process(self, instance):
self.log.info(instance) So yeah, they did been processed :)
I intentionally set
Haha, thanks :D |
AND
Is this related to #283? |
This PR will fix #309 , and UX bug related to #281 but on plugin section.
Before
Batman
andDavid
should not be toggled, but the restriction got bypassed via toggling the section.After
Implementation