mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 12:43:39 +00:00
Button uppercase styling enforcement
This commit is contained in:
@@ -46,9 +46,16 @@ namespace Bit.Android.Controls
|
||||
private void SetUppercase()
|
||||
{
|
||||
var element = Element as ExtendedButton;
|
||||
if(element != null && !element.Uppercase)
|
||||
if(element != null && !string.IsNullOrWhiteSpace(element.Text))
|
||||
{
|
||||
Control.TransformationMethod = null;
|
||||
if(element.Uppercase)
|
||||
{
|
||||
element.Text = element.Text.ToUpperInvariant();
|
||||
}
|
||||
else
|
||||
{
|
||||
Control.TransformationMethod = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user