Use the correct way to get the main thread

This commit is contained in:
Matthew Leibowitz 2016-11-28 15:18:34 +02:00
Родитель 91262e1d9f
Коммит 54ede1963b
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,8 @@ namespace SkiaSharpSample.Samples
cts = new CancellationTokenSource();
scheduler = TaskScheduler.Current;
scheduler = TaskScheduler.FromCurrentSynchronizationContext();
var loop = Task.Run(async () =>
{
while (!cts.IsCancellationRequested)