1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-08 06:22:55 +08:00

Merge pull request #31685 from frenzibyte/two-factor-authentication-code

Do not display autocorrect suggestions in two factor verification code text box
This commit is contained in:
Bartłomiej Dach 2025-01-30 11:15:09 +01:00 committed by GitHub
commit d8c63a443f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,7 @@ using System.Threading.Tasks;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
using osu.Framework.Input.Events;
using osu.Framework.Logging;
using osu.Game.Graphics;
@ -62,6 +63,7 @@ namespace osu.Game.Overlays.Login
},
codeTextBox = new OsuTextBox
{
InputProperties = new TextInputProperties(TextInputType.Code),
PlaceholderText = "Enter code",
RelativeSizeAxes = Axes.X,
TabbableContentContainer = this,