mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
This commit is contained in:
committed by
GitHub
parent
5c2c74a6c9
commit
91b53cdc13
@@ -225,6 +225,7 @@ namespace PowerAccent.Core
|
||||
LetterKey.VK_DIVIDE_ => new[] { "÷", "√" },
|
||||
LetterKey.VK_MULTIPLY_ => new[] { "×", "⋅" },
|
||||
LetterKey.VK_PLUS => new[] { "≤", "≥", "≠", "≈", "≙", "⊕", "⊗", "∓", "≅", "≡" },
|
||||
LetterKey.VK_BACKSLASH => new[] { "`", "~" },
|
||||
_ => Array.Empty<string>(),
|
||||
};
|
||||
}
|
||||
|
||||
@@ -109,7 +109,8 @@ namespace winrt::PowerToys::PowerAccentKeyboardService::implementation
|
||||
LetterKey::VK_MINUS,
|
||||
LetterKey::VK_SLASH_,
|
||||
LetterKey::VK_DIVIDE_,
|
||||
LetterKey::VK_MULTIPLY_, };
|
||||
LetterKey::VK_MULTIPLY_,
|
||||
LetterKey::VK_BACKSLASH, };
|
||||
LetterKey letterPressed{};
|
||||
|
||||
static inline const std::vector<TriggerKey> triggers = { TriggerKey::Right, TriggerKey::Left, TriggerKey::Space };
|
||||
|
||||
@@ -47,7 +47,8 @@ namespace PowerToys
|
||||
VK_MINUS = 0xBD,
|
||||
VK_MULTIPLY_ = 0x6A,
|
||||
VK_SLASH_ = 0xBF,
|
||||
VK_DIVIDE_ = 0x6F
|
||||
VK_DIVIDE_ = 0x6F,
|
||||
VK_BACKSLASH = 0xDC
|
||||
};
|
||||
|
||||
enum TriggerKey
|
||||
|
||||
Reference in New Issue
Block a user