Browse Source
add the old api back for backporting
pull/6941/head
Jumar Macato
4 years ago
No known key found for this signature in database
GPG Key ID: 85076C4D9D3155A3
1 changed files with
6 additions and
0 deletions
-
src/Avalonia.Animation/Animation.cs
|
|
|
@ -353,6 +353,12 @@ namespace Avalonia.Animation |
|
|
|
return new CompositeDisposable(subscriptions); |
|
|
|
} |
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
public Task RunAsync(Animatable control, IClock clock = null) |
|
|
|
{ |
|
|
|
return RunAsync(control,clock, default); |
|
|
|
} |
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
public Task RunAsync(Animatable control, IClock clock = null, CancellationToken cancellationToken = default) |
|
|
|
{ |
|
|
|
|