mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
[Settings] Change settings header to "Remap keys" on KBM pagr (#3654)
* Update settings header: Remap keys We write "Remap Keyboard" but it must be "Remap keys" because we not remapping the whole keyboard. We only remap single keys. * Tweaked c++ side naming Co-authored-by: Arjun <arjunbalgovind@gmail.com>
This commit is contained in:
@@ -86,7 +86,7 @@ void createEditShortcutsWindow(HINSTANCE hInst, KeyboardManagerState& keyboardMa
|
||||
// Window Creation
|
||||
HWND _hWndEditShortcutsWindow = CreateWindow(
|
||||
szWindowClass,
|
||||
L"Remap Shortcuts",
|
||||
L"Remap shortcuts",
|
||||
WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MAXIMIZEBOX,
|
||||
(desktopRect.right / 2) - (windowWidth / 2),
|
||||
(desktopRect.bottom / 2) - (windowHeight / 2),
|
||||
@@ -128,7 +128,7 @@ void createEditShortcutsWindow(HINSTANCE hInst, KeyboardManagerState& keyboardMa
|
||||
|
||||
// Header text
|
||||
TextBlock headerText;
|
||||
headerText.Text(L"Remap Shortcuts");
|
||||
headerText.Text(L"Remap shortcuts");
|
||||
headerText.FontSize(30);
|
||||
headerText.Margin({ 0, 0, 0, 0 });
|
||||
header.SetAlignLeftWithPanel(headerText, true);
|
||||
|
||||
Reference in New Issue
Block a user