vcl/win/window/salframe.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 3bae5216881a2b8d84066a81b5e2f728675000f0
Author:     László Németh <nem...@numbertext.org>
AuthorDate: Wed Jun 16 14:31:32 2021 +0200
Commit:     László Németh <nem...@numbertext.org>
CommitDate: Thu Jun 17 09:46:01 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 <nem...@numbertext.org>
    Reviewed-by: László Németh <nem...@numbertext.org>

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;
         }
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to