Fix osu!direct hotkey overriding drawings hotkey (for now).

This commit is contained in:
smoogipooo 2017-05-27 20:22:19 +09:00
parent e67a00f1f6
commit 330bd4e11d

View File

@ -255,6 +255,9 @@ namespace osu.Game
settings.ToggleVisibility();
return true;
case Key.D:
if (state.Keyboard.ShiftPressed || state.Keyboard.AltPressed)
return false;
direct.ToggleVisibility();
return true;
}