Skip to content

Commit

Permalink
Remove unnecessary specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzibyte committed Nov 9, 2024
1 parent fb364b1 commit 6a7a92a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Framework.Tests/Visual/UserInterface/TestSceneTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public void VariousTextBoxes()

otherTextBoxes.Add(new BasicTextBox
{
InputProperties = new TextInputProperties(TextInputType.Password, false),
InputProperties = new TextInputProperties(TextInputType.Password),
PlaceholderText = @"Password textbox",
Text = "Secret ;)",
Size = new Vector2(500, 30),
Expand Down Expand Up @@ -176,7 +176,7 @@ public void TestNumbersOnly()
{
textBoxes.Add(numbers = new BasicTextBox
{
InputProperties = new TextInputProperties(TextInputType.Number, false),
InputProperties = new TextInputProperties(TextInputType.Number),
PlaceholderText = @"Only numbers",
Size = new Vector2(500, 30),
TabbableContentContainer = textBoxes
Expand Down

0 comments on commit 6a7a92a

Please sign in to comment.