mirror of
https://github.com/moparisthebest/keepass2android
synced 2025-02-16 06:50:14 -05:00
increase priority of notifications to increase likelihood that buttons are shown
change password mask (fix problem on some devices)
This commit is contained in:
parent
4905392d47
commit
b1cec02040
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -928,11 +928,13 @@ namespace keepass2android
|
||||
|
||||
if (_showPassword)
|
||||
{
|
||||
password.TransformationMethod = null;
|
||||
//password.TransformationMethod = null;
|
||||
password.InputType = InputTypes.TextVariationVisiblePassword ;
|
||||
}
|
||||
else
|
||||
{
|
||||
password.TransformationMethod = PasswordTransformationMethod.Instance;
|
||||
//password.TransformationMethod = PasswordTransformationMethod.Instance;
|
||||
password.InputType = InputTypes.ClassText | InputTypes.TextVariationPassword;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
1976
src/keepass2android/Resources/Resource.designer.cs
generated
1976
src/keepass2android/Resources/Resource.designer.cs
generated
File diff suppressed because it is too large
Load Diff
@ -117,7 +117,7 @@ namespace keepass2android
|
||||
_ctx.GetString(Resource.String.menu_copy_pass),
|
||||
GetPendingIntent(Intents.CopyPassword, Resource.String.menu_copy_pass)));
|
||||
|
||||
notificationBuilder.SetPriority((int)Android.App.NotificationPriority.High);
|
||||
notificationBuilder.SetPriority((int)Android.App.NotificationPriority.Max);
|
||||
var notification = notificationBuilder.Build();
|
||||
notification.DeleteIntent = CreateDeleteIntent(NotifyCombined);
|
||||
_notificationManager.Notify(NotifyCombined, notification);
|
||||
|
Loading…
Reference in New Issue
Block a user