1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 11:53:21 +08:00

Revert some unnecessary changes

This commit is contained in:
Dean Herbert 2019-03-06 17:36:25 +09:00
parent 7aa30ca3f6
commit 62716851a1
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,6 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics.Cursor;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Rulesets.UI;
@ -20,7 +19,10 @@ namespace osu.Game.Rulesets.Osu.Edit
private class OsuPlayfieldNoCursor : OsuPlayfield
{
protected override CursorContainer CreateCursor() => null;
public OsuPlayfieldNoCursor()
{
Cursor?.Expire();
}
}
}
}

View File

@ -48,8 +48,6 @@ namespace osu.Game.Rulesets.UI
/// </summary>
public readonly BindableBool DisplayJudgements = new BindableBool(true);
public readonly BindableBool HasReplayLoaded = new BindableBool();
/// <summary>
/// Creates a new <see cref="Playfield"/>.
/// </summary>