mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 09:46:54 +02:00
@@ -114,6 +114,7 @@ namespace PowerAccent.Core
|
||||
LetterKey.VK_Y => new string[] { "ÿ", "ŷ", "ý", "ẏ" },
|
||||
LetterKey.VK_Z => new string[] { "ź", "ž", "ż", "ʒ", "ǯ", "ζ" },
|
||||
LetterKey.VK_COMMA => new string[] { "¿", "¡", "∙", "₋", "⁻", "–", "≤", "≥", "≠", "≈", "≙", "±", "₊", "⁺" },
|
||||
LetterKey.VK_MINUS => new string[] { "~", "‐", "‑", "‒", "–", "—", "―", "⁓", "−", "⸺", "⸻" },
|
||||
_ => Array.Empty<string>(),
|
||||
};
|
||||
}
|
||||
|
||||
@@ -98,7 +98,8 @@ namespace winrt::PowerToys::PowerAccentKeyboardService::implementation
|
||||
LetterKey::VK_X,
|
||||
LetterKey::VK_Y,
|
||||
LetterKey::VK_Z,
|
||||
LetterKey::VK_COMMA };
|
||||
LetterKey::VK_COMMA,
|
||||
LetterKey::VK_MINUS };
|
||||
LetterKey letterPressed{};
|
||||
|
||||
static inline const std::vector<TriggerKey> triggers = { TriggerKey::Right, TriggerKey::Left, TriggerKey::Space };
|
||||
|
||||
@@ -41,7 +41,8 @@ namespace PowerToys
|
||||
VK_X = 0x58,
|
||||
VK_Y = 0x59,
|
||||
VK_Z = 0x5A,
|
||||
VK_COMMA = 0xBC
|
||||
VK_COMMA = 0xBC,
|
||||
VK_MINUS = 0xBD
|
||||
};
|
||||
|
||||
enum TriggerKey
|
||||
|
||||
Reference in New Issue
Block a user