diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-06 10:30:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-06 18:10:04 +0200 |
commit | d156e891db34e88991a6c18fd3cff6feddfc61c8 (patch) | |
tree | ef8d3ca83920ea73324e7e125b41cfda9f57a7e8 /offapi/com | |
parent | ebd697df0cfed7078346e61c069891cf02c2cc54 (diff) |
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/awt/Key.idl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/Key.idl b/offapi/com/sun/star/awt/Key.idl index 3cd7cc951e24..bd236c3775a8 100644 --- a/offapi/com/sun/star/awt/Key.idl +++ b/offapi/com/sun/star/awt/Key.idl @@ -24,6 +24,8 @@ /** These values are used to specify distinct physical keys, plus some special values used by the macOS implementation. + + Noting that these numbers are simply allocated here, and not taken from any specification. */ published constants Key { @@ -364,6 +366,9 @@ published constants Key /** @since LibreOffice 4.3 **/ const short QUOTERIGHT = 1318; + /** @since LibreOffice 7.5 **/ + const short RIGHTCURLYBRACKET = 1319; + /** The following values don't correspond to physical keys on any keyboard but are used in the macOS implementation of VCL. They |