This commit is contained in:
yumoqing 2020-08-10 21:14:30 +08:00
parent 1bcb5d346d
commit 942bf922d2

View File

@ -402,6 +402,10 @@ class Blocks(EventDispatcher):
rf = RegistedFunction()
name = desc.get('rfname')
func = rf.get(name)
if func is None:
print('rfname(%s) not found' % name,rf.registKW)
raise Exception('rfname(%s) not found' % name)
params = desc.get('params',{})
d = self.getActionData(widget,desc)
params.update(d)