From 5c4eeb121a1bf16d1932d1a46e7da016c0ce8e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Thu, 30 Apr 2020 13:14:37 +0200 Subject: [PATCH] Change to a more logical audio mute icon --- app/src/components/Containers/Peer.js | 8 ++++---- .../components/MeetingDrawer/ParticipantList/ListPeer.js | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/src/components/Containers/Peer.js b/app/src/components/Containers/Peer.js index 559d625..30cbecf 100644 --- a/app/src/components/Containers/Peer.js +++ b/app/src/components/Containers/Peer.js @@ -12,8 +12,8 @@ import { useIntl, FormattedMessage } from 'react-intl'; import VideoView from '../VideoContainers/VideoView'; import Tooltip from '@material-ui/core/Tooltip'; import Fab from '@material-ui/core/Fab'; -import MicIcon from '@material-ui/icons/Mic'; -import MicOffIcon from '@material-ui/icons/MicOff'; +import VolumeUpIcon from '@material-ui/icons/VolumeUp'; +import VolumeOffIcon from '@material-ui/icons/VolumeOff'; import NewWindowIcon from '@material-ui/icons/OpenInNew'; import FullScreenIcon from '@material-ui/icons/Fullscreen'; import Volume from './Volume'; @@ -252,9 +252,9 @@ const Peer = (props) => }} > { micEnabled ? - + : - + } diff --git a/app/src/components/MeetingDrawer/ParticipantList/ListPeer.js b/app/src/components/MeetingDrawer/ParticipantList/ListPeer.js index 80fc802..a563d9a 100644 --- a/app/src/components/MeetingDrawer/ParticipantList/ListPeer.js +++ b/app/src/components/MeetingDrawer/ParticipantList/ListPeer.js @@ -10,8 +10,8 @@ import { useIntl } from 'react-intl'; import IconButton from '@material-ui/core/IconButton'; import VideocamIcon from '@material-ui/icons/Videocam'; import VideocamOffIcon from '@material-ui/icons/VideocamOff'; -import MicIcon from '@material-ui/icons/Mic'; -import MicOffIcon from '@material-ui/icons/MicOff'; +import VolumeUpIcon from '@material-ui/icons/VolumeUp'; +import VolumeOffIcon from '@material-ui/icons/VolumeOff'; import ScreenIcon from '@material-ui/icons/ScreenShare'; import ScreenOffIcon from '@material-ui/icons/StopScreenShare'; import ExitIcon from '@material-ui/icons/ExitToApp'; @@ -217,9 +217,9 @@ const ListPeer = (props) => }} > { micEnabled ? - + : - + } { isModerator &&