vcl/source/window/builder.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit bd7f647b16ca2c5f9ef7d4b0945201c4f2ecebad
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Mon Mar 9 20:21:35 2020 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Tue Mar 10 10:02:52 2020 +0100

    add asterisk<->KEY_MULTIPLY mapping
    
    Change-Id: I4d5a776ed1fa72beece47652cf9e012d65388ea6
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90242
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 6291fd4226a1..f9329cbecc52 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -3632,6 +3632,8 @@ namespace
             return vcl::KeyCode(KEY_LEFT, bShift, bMod1, bMod2, bMod3);
         else if (rKey.first == "Right")
             return vcl::KeyCode(KEY_RIGHT, bShift, bMod1, bMod2, bMod3);
+        else if (rKey.first == "asterisk")
+            return vcl::KeyCode(KEY_MULTIPLY, bShift, bMod1, bMod2, bMod3);
 
         assert (rKey.first.getLength() == 1);
         char cChar = rKey.first.toChar();
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to