1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-04 00:14:12 +08:00

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

This commit is contained in:
smoogipooo
2017-05-27 20:22:19 +09:00
Unverified
parent e67a00f1f6
commit 330bd4e11d
+3
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;
}