(cherry picked from commit 806f742263)
This commit is contained in:
Juergen Spitzmueller 2018-08-09 17:23:05 +02:00
parent f922858fe3
commit 43edb36032
2 changed files with 7 additions and 0 deletions

View File

@ -371,6 +371,10 @@ void InsetInfo::updateInfo()
gui = _("CapsLock");
ods << translateIfPossible(from_ascii("CapsLock"), lcode);
break;
case 0x2303://Control
gui = _("Control[[Key]]");
ods << translateIfPossible(from_ascii("Control[[Key]]"), lcode);
break;
case 0x2318://CMD
gui = _("Command[[Key]]");
ods << translateIfPossible(from_ascii("Command[[Key]]"), lcode);

View File

@ -89,6 +89,9 @@ What's new
- Fix breakage caused by commas in the caption of listings (bug 11484).
- Fix LaTeX error caused by Control key shortcut inset on the Mac (remainder
of bug 10641).
* USER INTERFACE