Fix regression in HoldFocus behaviour

This commit is contained in:
Dean Herbert
2018-07-01 14:08:34 +09:00
parent 00fd5c8dbc
commit 7028767e50

View File

@ -27,7 +27,7 @@ namespace osu.Game.Graphics.UserInterface
{ {
focus = value; focus = value;
if (!focus && HasFocus) if (!focus && HasFocus)
KillFocus(); base.KillFocus();
} }
} }