From d156e891db34e88991a6c18fd3cff6feddfc61c8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 6 Sep 2022 10:30:42 +0200 Subject: tdf#150682 - bad shortcut in french langage the = key is } on a french keyboard, so remap the ctrl-alt-= shortcuts to ctrl-alt-} which means the user gets to keep pressing keys in roughly the same physical location for this action, regardless of keyboard Change-Id: I03e251dacc1c19e543182a44ae23fde2a57cfa45 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139474 Tested-by: Jenkins Reviewed-by: Noel Grandin --- vcl/win/window/salframe.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vcl/win/window') diff --git a/vcl/win/window/salframe.cxx b/vcl/win/window/salframe.cxx index a3941450f6aa..1335c61ad170 100644 --- a/vcl/win/window/salframe.cxx +++ b/vcl/win/window/salframe.cxx @@ -2497,6 +2497,9 @@ OUString WinSalFrame::GetKeyName( sal_uInt16 nKeyCode ) case KEY_QUOTELEFT: cSVCode = '`'; break; + case KEY_RIGHTCURLYBRACKET: + cSVCode = '}'; + break; } } -- cgit