diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-07-28 23:14:40 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-12 03:22:12 -0500 |
commit | 76e46a52706711c11f1f62373d0db5262dd2be2f (patch) | |
tree | 1d3b9357cdc20ef47f6faacf3228fceca65f0cea | |
parent | ff12ec8ea00530768d5e07dcc9ab200ce7f54ef6 (diff) |
fdo#39477: Mac Keyboard shortcut Option key ko in Customize dialog
There's still a problem of order of symbols between menu shortcut and the 2 shortcuts in Customize dialog
Change-Id: I7d8235130e8ddb8aa510a20cf803fbe81038b023
Reviewed-on: https://gerrit.libreoffice.org/10600
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/osx/salframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx index c799407456aa..d2422ca69d12 100644 --- a/vcl/osx/salframe.cxx +++ b/vcl/osx/salframe.cxx @@ -1060,7 +1060,7 @@ OUString AquaSalFrame::GetKeyName( sal_uInt16 nKeyCode ) // we do not really handle Alt (see below) // we map it to MOD3, whichis actually Command if( (nKeyCode & (KEY_MOD2|KEY_MOD3)) != 0 ) - aResult.append( sal_Unicode( 0x2303 ) ); + aResult.append( sal_Unicode( 0x2325 ) ); aResult.append( it->second ); } |