Add generic currency symbol ¤, mapped to VK_O back
This commit is contained in:
Родитель
16c1f05bfa
Коммит
06435c8d26
|
@ -267,8 +267,9 @@ namespace PowerAccent.Core
|
|||
LetterKey.VK_H => new[] { "₴" },
|
||||
LetterKey.VK_K => new[] { "₭" },
|
||||
LetterKey.VK_L => new[] { "ł", "£" },
|
||||
LetterKey.VK_N => new[] { "л" },
|
||||
LetterKey.VK_M => new[] { "₼" },
|
||||
LetterKey.VK_N => new[] { "л" },
|
||||
LetterKey.VK_O => new[] { "¤" },
|
||||
LetterKey.VK_P => new[] { "£", "₽" },
|
||||
LetterKey.VK_R => new[] { "₹", "៛", "﷼" },
|
||||
LetterKey.VK_S => new[] { "$", "₪" },
|
||||
|
@ -278,15 +279,15 @@ namespace PowerAccent.Core
|
|||
LetterKey.VK_Z => new[] { "z" },
|
||||
LetterKey.VK_3 => new[]
|
||||
{
|
||||
"฿", "в", "₿", "¢", "₡", "č", "₫", "€", "£", "ƒ",
|
||||
"₴", "₭", "ł", "л", "₼", "₽", "₹", "៛", "﷼", "$",
|
||||
"₪", "₮", "₺", "₸", "₩", "¥", "z",
|
||||
"฿", "в", "₿", "¢", "₡", "č", "₫", "€", "£", "ƒ",
|
||||
"₴", "₭", "ł", "₼", "л", "¤", "₽", "₹", "៛", "﷼",
|
||||
"$","₪", "₮", "₺", "₸", "₩", "¥", "z",
|
||||
}, // VK_3 is commonly used for the locale currency symbol
|
||||
LetterKey.VK_4 => new[]
|
||||
{
|
||||
"฿", "в", "₿", "¢", "₡", "č", "₫", "€", "£", "ƒ",
|
||||
"₴", "₭", "ł", "л", "₼", "₽", "₹", "៛", "﷼", "$",
|
||||
"₪", "₮", "₺", "₸", "₩", "¥", "z",
|
||||
"฿", "в", "₿", "¢", "₡", "č", "₫", "€", "£", "ƒ",
|
||||
"₴", "₭", "ł", "₼", "л", "¤", "₽", "₹", "៛", "﷼",
|
||||
"$","₪", "₮", "₺", "₸", "₩", "¥", "z",
|
||||
}, // VK_4 is commonly used for the locale currency symbol
|
||||
_ => Array.Empty<string>(),
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче