Browse Source

Merge branch 'master' into box-shadow-api-fixes

pull/3939/head
Dariusz Komosiński 6 years ago
committed by GitHub
parent
commit
e2d9296101
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      samples/RenderDemo/Controls/LineBoundsDemoControl.cs

2
samples/RenderDemo/Controls/LineBoundsDemoControl.cs

@ -17,7 +17,7 @@ namespace RenderDemo.Controls
public LineBoundsDemoControl()
{
var timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromSeconds(1 / 60);
timer.Interval = TimeSpan.FromSeconds(1 / 60.0);
timer.Tick += (sender, e) => Angle += Math.PI / 360;
timer.Start();
}

Loading…
Cancel
Save