Ver código fonte

Make animation value override local value.

This line was missing. Might be the cause of #3466.
Steven Kirk 5 anos atrás
pai
commit
aec9c6e5e2
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      src/Avalonia.Base/ValueStore.cs

+ 1 - 0
src/Avalonia.Base/ValueStore.cs

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