Skip to content

Commit

Permalink
Merge pull request unoplatform#15170 from ramezgerges/textbox_passwor…
Browse files Browse the repository at this point in the history
…d_bullet

fix(passwordbox): use a larger bullet glyph to match WinUI
  • Loading branch information
mergify[bot] authored Jan 25, 2024
2 parents d3b4242 + eaded92 commit e573143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI/UI/Xaml/Controls/TextBox/TextBoxView.skia.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private void SetDisplayBlockText(string text)
if (_isPasswordBox && !_isPasswordRevealed)
{
// TODO: PasswordChar isn't currently implemented. It should be used here when implemented.
DisplayBlock.Text = new string('', text.Length);
DisplayBlock.Text = new string('', text.Length);
}
else
{
Expand Down

0 comments on commit e573143

Please sign in to comment.