Invert CanShowCursor conditional to fix cursor not showing in VisualTests

This commit is contained in:
smoogipoo
2018-01-16 13:40:02 +09:00
parent e0220de1a5
commit 0459f0a069
2 changed files with 6 additions and 1 deletions

View File

@ -20,7 +20,7 @@ namespace osu.Game.Graphics.Cursor
/// <summary>
/// Whether any cursors can be displayed.
/// </summary>
public bool CanShowCursor;
public bool CanShowCursor = true;
public CursorContainer Cursor { get; }
public bool ProvidingUserCursor => true;