Make OutlinedNumberBox private and nested again

This commit is contained in:
Dean Herbert
2021-06-28 15:24:55 +09:00
parent 88c6143aae
commit eeb56970ef
2 changed files with 5 additions and 10 deletions

View File

@ -58,5 +58,10 @@ namespace osu.Game.Overlays.Settings
});
}
}
private class OutlinedNumberBox : OutlinedTextBox
{
protected override bool CanAddCharacter(char character) => char.IsNumber(character);
}
}
}