You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pathButtonGrp and folderButtonGrp will create two instances when a parent is specified, although the second instance in the UI is non-functional. textFieldGrp doesn't have the same problem.
As far as my primitive understanding goes, the problem is in pymel.core.uitypes.PyUI.__new__(), which creates the extra, non-functional instance despite receiving create=False.
I've worked around for myself it by pushing parent=None into kwargs before the super but I'm not smart enough to know what damage I might be doing...
pathButtonGrp
andfolderButtonGrp
will create two instances when a parent is specified, although the second instance in the UI is non-functional.textFieldGrp
doesn't have the same problem.Printed output:
When the parent isn't specified, only one is created...
As far as my primitive understanding goes, the problem is in
pymel.core.uitypes.PyUI.__new__()
, which creates the extra, non-functional instance despite receivingcreate=False
.I've worked around for myself it by pushing
parent=None
into kwargs before thesuper
but I'm not smart enough to know what damage I might be doing...The text was updated successfully, but these errors were encountered: