[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - vcl/unx
Caolán McNamara
caolanm at redhat.com
Wed Dec 7 15:55:06 UTC 2016
vcl/unx/gtk3/gtk3gtkframe.cxx | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
New commits:
commit bb3c35a1c3ca5c9586b14730ff3e3a96f1ad94c4
Author: Caolán McNamara <caolanm at redhat.com>
Date: Fri Jul 29 12:44:19 2016 +0100
Resolves: rhbz#1400683 ctrl+alt+c doesn't insert comment
only map GDK_SUPER_MASK to KEY_MOD3 and not GDK_META_MASK
on wayland I'm getting a GDK_MOD1_MASK and a GDK_META_MASK
on pressing the left alt. The check for KEY_MOD2 in
Window::KeyInput trips up with the extra KEY_MOD3 bit set
so the auto mnemonic underlines don't appear on pressing
left alt under wayland
Lets map only GDK_SUPER_MASK to KEY_MOD3
(cherry picked from commit a840b2526b8b8e44991bef2eb7b6ba44a1a90d3a)
Change-Id: I1e9cc9fc095f5edfa7ad7c71440232c6de1ecf04
Reviewed-on: https://gerrit.libreoffice.org/31689
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Michael Stahl <mstahl at redhat.com>
diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index cf3c426..17b9e27 100644
--- a/vcl/unx/gtk3/gtk3gtkframe.cxx
+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
@@ -122,10 +122,7 @@ static sal_uInt16 GetKeyModCode( guint state )
nCode |= KEY_MOD1;
if( (state & GDK_MOD1_MASK) )
nCode |= KEY_MOD2;
-
- // Map Meta/Super keys to MOD3 modifier on all Unix systems
- // except Mac OS X
- if ( (state & GDK_META_MASK ) || ( state & GDK_SUPER_MASK ) )
+ if( (state & GDK_SUPER_MASK) )
nCode |= KEY_MOD3;
return nCode;
}
More information about the Libreoffice-commits
mailing list