Add keyboard shortcuts for LocalRecordingInfoDialog
Which key should we use? Using "L" for now.
This commit is contained in:
parent
0490a3cf73
commit
2f2e69a6f5
|
@ -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…
Reference in New Issue