Skip to content

Commit

Permalink
[Quick Accent] Plus-minus on plus key (microsoft#27287)
Browse files Browse the repository at this point in the history
Replace minus-plus (U+2213) with plus-minus (U+00B1) in plus key list.
  • Loading branch information
throwaway96 committed May 5, 2024
1 parent 3fe78fe commit be1011c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/poweraccent/PowerAccent.Core/Languages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private static string[] GetDefaultLetterKeyAllLanguagesOnly(LetterKey letter)
LetterKey.VK_SLASH_ => new[] { "÷", "√" },
LetterKey.VK_DIVIDE_ => new[] { "÷", "√" },
LetterKey.VK_MULTIPLY_ => new[] { "×", "⋅" },
LetterKey.VK_PLUS => new[] { "≤", "≥", "≠", "≈", "≙", "⊕", "⊗", "", "≅", "≡" },
LetterKey.VK_PLUS => new[] { "≤", "≥", "≠", "≈", "≙", "⊕", "⊗", "±", "≅", "≡" },
_ => Array.Empty<string>(),
};
}
Expand Down

0 comments on commit be1011c

Please sign in to comment.