From dc53d1b7a757a141474adb5782cb0e000aee7e9f Mon Sep 17 00:00:00 2001 From: ozone10 Date: Tue, 11 Jun 2024 07:33:00 +0200 Subject: [PATCH] Add F13-F24 keys to Shortcut Mapper Fix #11975, close #15269 --- PowerEditor/src/WinControls/shortcut/shortcut.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/PowerEditor/src/WinControls/shortcut/shortcut.cpp b/PowerEditor/src/WinControls/shortcut/shortcut.cpp index a55b2f1d0..99d471ce2 100644 --- a/PowerEditor/src/WinControls/shortcut/shortcut.cpp +++ b/PowerEditor/src/WinControls/shortcut/shortcut.cpp @@ -119,6 +119,19 @@ KeyIDNAME namedKeyArray[] = { {"F11", VK_F11}, {"F12", VK_F12}, +{"F13", VK_F13}, +{"F14", VK_F14}, +{"F15", VK_F15}, +{"F16", VK_F16}, +{"F17", VK_F17}, +{"F18", VK_F18}, +{"F19", VK_F19}, +{"F20", VK_F20}, +{"F21", VK_F21}, +{"F22", VK_F22}, +{"F23", VK_F23}, +{"F24", VK_F24}, + {"~", VK_OEM_3}, {"-", VK_OEM_MINUS}, {"=", VK_OEM_PLUS},