Browse Source

Make animation value override local value.

This line was missing. Might be the cause of #3466.
pull/3575/head
Steven Kirk 6 years ago
parent
commit
aec9c6e5e2
  1. 1
      src/Avalonia.Base/ValueStore.cs

1
src/Avalonia.Base/ValueStore.cs

@ -232,6 +232,7 @@ namespace Avalonia
else
{
var priorityValue = new PriorityValue<T>(_owner, property, this, l);
priorityValue.SetValue(value, priority);
_values.SetValue(property, priorityValue);
}
}

Loading…
Cancel
Save