Browse Source
Merge pull request #4783 from MarchingCube/fix-4645-keyspline-parsing
Parse key splines using invariant culture.
pull/4792/head
Dariusz Komosiński
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Animation/KeySplineTypeConverter.cs
|
|
|
@ -19,7 +19,7 @@ namespace Avalonia.Animation |
|
|
|
|
|
|
|
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) |
|
|
|
{ |
|
|
|
return KeySpline.Parse((string)value, culture); |
|
|
|
return KeySpline.Parse((string)value, CultureInfo.InvariantCulture); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|