mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Only handle keys which create characters
This commit is contained in:
@ -160,8 +160,11 @@ namespace osu.Game.Overlays.BeatmapListing
|
|||||||
|
|
||||||
protected override bool OnKeyDown(KeyDownEvent e)
|
protected override bool OnKeyDown(KeyDownEvent e)
|
||||||
{
|
{
|
||||||
|
if (!base.OnKeyDown(e))
|
||||||
|
return false;
|
||||||
|
|
||||||
TypingStarted?.Invoke();
|
TypingStarted?.Invoke();
|
||||||
return base.OnKeyDown(e);
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user