-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Open
Labels
Area-LocalizationArea-UserInterfaceIssues pertaining to the user interface of the Console or TerminalIssues pertaining to the user interface of the Console or TerminalIssue-BugIt either shouldn't be doing this or needs an investigation.It either shouldn't be doing this or needs an investigation.Priority-2A description (P2)A description (P2)Product-TerminalThe new Windows Terminal.The new Windows Terminal.
Milestone
Description
Ported from MSFT:39044461
This block of code does not use localized key names (so in German, Ctrl should be Strg but is Ctrl)
terminal/src/cascadia/TerminalApp/TerminalPage.cpp
Lines 2000 to 2018 in 70313db
| if (WI_IsFlagSet(modifiers, VirtualKeyModifiers::Control)) | |
| { | |
| buffer += L"Ctrl+"; | |
| } | |
| if (WI_IsFlagSet(modifiers, VirtualKeyModifiers::Shift)) | |
| { | |
| buffer += L"Shift+"; | |
| } | |
| if (WI_IsFlagSet(modifiers, VirtualKeyModifiers::Menu)) | |
| { | |
| buffer += L"Alt+"; | |
| } | |
| if (WI_IsFlagSet(modifiers, VirtualKeyModifiers::Windows)) | |
| { | |
| buffer += L"Win+"; | |
| } |
This code is a hack to workaround a permanent WinUI issue . . .
Metadata
Metadata
Assignees
Labels
Area-LocalizationArea-UserInterfaceIssues pertaining to the user interface of the Console or TerminalIssues pertaining to the user interface of the Console or TerminalIssue-BugIt either shouldn't be doing this or needs an investigation.It either shouldn't be doing this or needs an investigation.Priority-2A description (P2)A description (P2)Product-TerminalThe new Windows Terminal.The new Windows Terminal.