Make TakeScreenshotAsync await on the internal task

This commit is contained in:
smoogipoo 2018-04-13 17:50:59 +09:00
parent 2e5bbe7074
commit 0235eba9de
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ public class CursorOverrideContainer : Container, IProvideCursor
/// </summary>
internal bool CanShowCursor = true;
internal readonly MenuCursor MenuCursor;
public CursorContainer Cursor => MenuCursor;
public bool ProvidingUserCursor => true;

View File

@ -70,7 +70,7 @@ public bool OnPressed(GlobalAction action)
private volatile int screenShotTasks;
public async Task TakeScreenshotAsync() => Task.Run(async () =>
public async Task TakeScreenshotAsync() => await Task.Run(async () =>
{
Interlocked.Increment(ref screenShotTasks);