Fix search textboxes absorbing home/end input on scroll containers

This commit is contained in:
Joehu 2019-12-30 09:29:46 -08:00
parent d8b96a679d
commit 32e4d4a563

View File

@ -40,6 +40,13 @@ namespace osu.Game.Graphics.UserInterface
if (action.ActionType == PlatformActionType.CharNext && action.ActionMethod == PlatformActionMethod.Delete)
return false;
switch (action.ActionType)
{
case PlatformActionType.LineEnd:
case PlatformActionType.LineStart:
return false;
}
return base.OnPressed(action);
}