Draft: compatible super for AngularDimension object

This commit is contained in:
carlopav
2020-04-24 22:05:31 +02:00
committed by Yorik van Havre
parent 0f3e0b0d0d
commit f6cc26e263

View File

@@ -386,7 +386,7 @@ class AngularDimension(DimensionBase):
def onChanged(self,obj,prop):
'''Do something when a property has changed'''
super().onChanged(obj, prop)
super(AngularDimension, self).onChanged(obj, prop)
if hasattr(obj,"Angle"):
obj.setEditorMode('Angle',1)
if hasattr(obj,"Normal"):