Browse Source
Pass the animatable's clock when applying animations.
pull/2661/head
Jumar Macato
7 years ago
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Styling/Styling/Style.cs
|
|
|
@ -131,7 +131,7 @@ namespace Avalonia.Styling |
|
|
|
obsMatch = Observable.Return(true); |
|
|
|
} |
|
|
|
|
|
|
|
var sub = animation.Apply(animatable, null, obsMatch); |
|
|
|
var sub = animation.Apply(animatable, animatable.Clock ?? null, obsMatch); |
|
|
|
subs.Add(sub); |
|
|
|
} |
|
|
|
} |
|
|
|
|