Merge pull request #1168 from 2xB/fix-788

GroupParameterItem: Did not pass changed options to ParameterItem
This commit is contained in:
Ogi Moore 2020-05-27 07:32:17 -07:00 committed by GitHub
commit 35128d404a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -437,8 +437,10 @@ class GroupParameterItem(ParameterItem):
else:
ParameterItem.addChild(self, child)
def optsChanged(self, param, changed):
if 'addList' in changed:
def optsChanged(self, param, opts):
ParameterItem.optsChanged(self, param, opts)
if 'addList' in opts:
self.updateAddList()
def updateAddList(self):