Wire up pressing the PTT button to unmute as well as spacebar

This commit is contained in:
David Baker
2022-04-29 18:56:17 +01:00
parent 363f2340a0
commit 70c099c4b5
3 changed files with 30 additions and 12 deletions

View File

@@ -11,6 +11,8 @@ export function PTTButton({
activeSpeakerAvatarUrl,
activeSpeakerIsLocalUser,
size,
startTalking,
stopTalking,
}) {
return (
<button
@@ -18,6 +20,8 @@ export function PTTButton({
[styles.talking]: activeSpeakerUserId,
[styles.error]: showTalkOverError,
})}
onMouseDown={startTalking}
onMouseUp={stopTalking}
>
{activeSpeakerIsLocalUser || !activeSpeakerUserId ? (
<MicIcon