浏览代码

Make animation value override local value.

This line was missing. Might be the cause of #3466.
Steven Kirk 5 年之前
父节点
当前提交
aec9c6e5e2
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/Avalonia.Base/ValueStore.cs

+ 1 - 0
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);
                 }
             }