[core] ListAttribute: don't call 'validateValue' on links

Links (Attribute reference or link expression) should not go through value confirmity checker
This commit is contained in:
Yann Lanthony 2018-06-07 19:23:01 +02:00 committed by Yann Lanthony
parent 168866aed0
commit 4d8a177ae3

View file

@ -320,6 +320,7 @@ class ListAttribute(Attribute):
self._value = value
# New value
else:
self.desc.validateValue(value)
self.extend(value)
self.requestGraphUpdate()