[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - vcl/unx

Gabor Kelemen (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 17 10:53:22 UTC 2021


 vcl/unx/generic/app/keysymnames.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 80e813fc9c2134fffbaec37246bff506d14d9cc8
Author:     Gabor Kelemen <kelemen.gabor2 at nisz.hu>
AuthorDate: Sat Jun 5 11:32:40 2021 +0200
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu Jun 17 12:52:48 2021 +0200

    tdf#103388 Show the backtick used in shortcut in Calc View menu
    
    as Ctrl+` instead of "Ctrl+grave" (see at View->Show Formula).
    
    This affected only gen backend on Linux (SAL_USE_VCLPLUGIN=gen),
    gtk3 and qt5 are handling this correctly.
    
    Change-Id: I2bebcf68118642e6c12cf2c5d4392f2ca423665b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116742
    Tested-by: László Németh <nemeth at numbertext.org>
    Reviewed-by: László Németh <nemeth at numbertext.org>
    (cherry picked from commit 3f9fcf0e7f154e49bbffeaea925edb6055add494)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117299
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>

diff --git a/vcl/unx/generic/app/keysymnames.cxx b/vcl/unx/generic/app/keysymnames.cxx
index c4211be02b16..387792d95984 100644
--- a/vcl/unx/generic/app/keysymnames.cxx
+++ b/vcl/unx/generic/app/keysymnames.cxx
@@ -67,7 +67,8 @@ namespace vcl_sal {
         { XK_Escape, "Esc" },
         { XK_space, "Space" },
         { XK_Page_Up, "PgUp"},
-        { XK_Page_Down, "PgDn"}
+        { XK_Page_Down, "PgDn"},
+        { XK_grave, "`"}
     };
 
     const struct KeysymNameReplacement aImplReplacements_Turkish[] =


More information about the Libreoffice-commits mailing list