Skip to content

Key cap names are not localized in the new tab menu #13815

@DHowett

Description

@DHowett

Ported from MSFT:39044461

This block of code does not use localized key names (so in German, Ctrl should be Strg but is Ctrl)

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

No one assigned

    Labels

    Area-LocalizationArea-UserInterfaceIssues pertaining to the user interface of the Console or TerminalIssue-BugIt either shouldn't be doing this or needs an investigation.Priority-2A description (P2)Product-TerminalThe new Windows Terminal.

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions