1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00

Remove ConfineMouseTracker field

This commit is contained in:
Shane Woolcock 2020-10-07 18:11:47 +10:30
parent 2e0a9f53c1
commit f88ba1734b

View File

@ -90,8 +90,6 @@ namespace osu.Game
private IdleTracker idleTracker;
private ConfineMouseTracker confineMouseTracker;
/// <summary>
/// Whether overlays should be able to be opened game-wide. Value is sourced from the current active screen.
/// </summary>
@ -585,7 +583,7 @@ namespace osu.Game
leftFloatingOverlayContent = new Container { RelativeSizeAxes = Axes.Both },
topMostOverlayContent = new Container { RelativeSizeAxes = Axes.Both },
idleTracker,
confineMouseTracker = new ConfineMouseTracker()
new ConfineMouseTracker()
});
ScreenStack.ScreenPushed += screenPushed;