[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - vcl/win
László Németh (via logerrit)
logerrit at kemper.freedesktop.org
Thu Jun 17 14:59:52 UTC 2021
vcl/win/window/salframe.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 585f89d031d4ffd19fca70a5c6152c10cc46bc4d
Author: László Németh <nemeth at numbertext.org>
AuthorDate: Wed Jun 16 14:31:32 2021 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu Jun 17 16:59:18 2021 +0200
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 at numbertext.org>
Reviewed-by: László Németh <nemeth at numbertext.org>
(cherry picked from commit 3bae5216881a2b8d84066a81b5e2f728675000f0)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117302
Tested-by: Jenkins
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;
}
}
More information about the Libreoffice-commits
mailing list