diff options
author | László Németh <nemeth@numbertext.org> | 2021-06-16 14:31:32 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2021-06-17 09:46:01 +0200 |
commit | 3bae5216881a2b8d84066a81b5e2f728675000f0 (patch) | |
tree | 5858ffb84495cd465e372cce26ccde24949c92f1 /vcl/win | |
parent | ed7f1a6fb45502275b0975e0333ba4c63008d5b4 (diff) |
tdf#115281 sc Windows: fix shortcut text Ctrl+` in View menu
In View->Show Formula, shortcut text was only "Ctrl" instead
of the complete "Ctrl+`".
Follow-up to commit 3f9fcf0e7f154e49bbffeaea925edb6055add494
"tdf#103388 Show the backtick used in shortcut in Calc View menu".
Change-Id: Icef8904bac0b663d9702e62fcdc0ab1f0f4bd1ee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117332
Tested-by: László Németh <nemeth@numbertext.org>
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/window/salframe.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/win/window/salframe.cxx b/vcl/win/window/salframe.cxx index 559598b20446..8e4abcdbd66e 100644 --- a/vcl/win/window/salframe.cxx +++ b/vcl/win/window/salframe.cxx @@ -2519,6 +2519,9 @@ OUString WinSalFrame::GetKeyName( sal_uInt16 nKeyCode ) case KEY_BRACKETRIGHT: cSVCode = ']'; break; + case KEY_QUOTELEFT: + cSVCode = '`'; + break; } } |