Skip to content

Commit

Permalink
Use obsolete AllowIme until it's removed
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzibyte committed Nov 4, 2024
1 parent d7ce29d commit 5d4c356
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion osu.Framework/Graphics/UserInterface/TextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ public bool ReadOnly

protected TextBox()
{
InputProperties = new TextInputProperties(TextInputType.Text, true);
#pragma warning disable CS0618 // Type or member is obsolete
InputProperties = new TextInputProperties(TextInputType.Text, AllowIme);
#pragma warning restore CS0618 // Type or member is obsolete

Masking = true;

Expand Down

0 comments on commit 5d4c356

Please sign in to comment.