Add keyboard shortcuts for LocalRecordingInfoDialog

Which key should we use? Using "L" for now.
pull/3223/head
Radium Zheng 6 years ago
parent 0490a3cf73
commit 2f2e69a6f5
  1. 3
      lang/main.json
  2. 5
      react/features/toolbox/components/web/Toolbox.js

@ -43,7 +43,8 @@
"mute": "Mute or unmute your microphone",
"fullScreen": "View or exit full screen",
"videoMute": "Start or stop your camera",
"showSpeakerStats": "Show speaker stats"
"showSpeakerStats": "Show speaker stats",
"localRecording": "Show or hide local recording controls"
},
"welcomepage":{
"accessibilityLabel": {

@ -268,6 +268,11 @@ class Toolbox extends Component<Props> {
character: 'S',
exec: this._onShortcutToggleFullScreen,
helpDescription: 'keyboardShortcuts.fullScreen'
},
this._shouldShowButton('localrecording') && {
character: 'L',
exec: this._onToolbarToggleLocalRecordingInfoDialog,
helpDescription: 'keyboardShortcuts.localRecording'
}
];

Loading…
Cancel
Save