mirror of
https://github.com/bitwarden/android.git
synced 2024-12-27 03:18:27 +03:00
3d9555d420
* PS-1009 Added effect to Entry that doesn't allow keyboard with emojis on passphrase separator * PS-1009 Removed unnecessary ImeOptions setting from NoEmojiKeyboardEffect Improved code * PS-1009 Removed unnecessary null validation on Android's NoEmojiKeyboardEffect Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>
12 lines
241 B
C#
12 lines
241 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Effects
|
|
{
|
|
public class NoEmojiKeyboardEffect : RoutingEffect
|
|
{
|
|
public NoEmojiKeyboardEffect()
|
|
: base("Bitwarden.NoEmojiKeyboardEffect")
|
|
{ }
|
|
}
|
|
}
|