mirror of https://github.com/ppy/osu
Add inline comment and improve linq robustness
This commit is contained in:
parent
d17c431faf
commit
5ad8dc316f
|
@ -51,8 +51,12 @@ private void load(FrameworkConfigManager frameworkConfig, GameHost host)
|
|||
Margin = new MarginPadding(40),
|
||||
});
|
||||
|
||||
var m = (MouseHandler)host.AvailableInputHandlers.Single(t => t is MouseHandler);
|
||||
m.UseRelativeMode.Value = false;
|
||||
// in order to have the OS mouse cursor visible, relative mode needs to be disabled.
|
||||
// can potentially be removed when https://github.com/ppy/osu-framework/issues/4309 is resolved.
|
||||
var mouseHandler = host.AvailableInputHandlers.OfType<MouseHandler>().FirstOrDefault();
|
||||
|
||||
if (mouseHandler != null)
|
||||
mouseHandler.UseRelativeMode.Value = false;
|
||||
|
||||
loadingSpinner.Show();
|
||||
|
||||
|
|
Loading…
Reference in New Issue