Browse Source

Minor fixes.

pull/2163/head
Jumar Macato 8 years ago
parent
commit
87e8bca879
No known key found for this signature in database GPG Key ID: B19884DAC3A5BF3F
  1. 2
      samples/RenderDemo/Pages/AnimationsPage.xaml
  2. 3
      src/Avalonia.Visuals/Animation/Animators/SolidColorBrushAnimator.cs

2
samples/RenderDemo/Pages/AnimationsPage.xaml

@ -149,7 +149,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Border Classes="Test Rect3"/>
<Border Classes="Test Rect4" Background="Navy"/>
<Border Classes="Test Rect5" Background="SeaGreen"/>
<Border Classes="Test Rect6"/>
<Border Classes="Test Rect6" Background="Red"/>
</WrapPanel>
</StackPanel>
</Grid>

3
src/Avalonia.Visuals/Animation/Animators/SolidColorBrushAnimator.cs

@ -7,8 +7,7 @@ using Avalonia.Media.Immutable;
namespace Avalonia.Animation.Animators
{
/// <summary>
/// Animator that interpolates <see cref="Color"/> through
/// gamma sRGB color space for better visual result.
/// Animator that handles <see cref="SolidColorBrush"/>.
/// </summary>
public class SolidColorBrushAnimator : Animator<SolidColorBrush>
{

Loading…
Cancel
Save