From 8fbac58091fbffa3448e8b907c09cda300740bc3 Mon Sep 17 00:00:00 2001 From: Brad Hefta-Gaub Date: Sun, 30 Oct 2016 09:33:02 -0700 Subject: [PATCH] remove mute icons --- interface/resources/qml/AvatarInputs.qml | 38 +----------------------- 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/interface/resources/qml/AvatarInputs.qml b/interface/resources/qml/AvatarInputs.qml index 4150979cd4..384504aaa0 100644 --- a/interface/resources/qml/AvatarInputs.qml +++ b/interface/resources/qml/AvatarInputs.qml @@ -95,46 +95,10 @@ Hifi.AvatarInputs { anchors.fill: parent color: root.mirrorVisible ? (root.audioClipping ? "red" : "#696969") : "#00000000" - Image { - id: faceMute - width: root.iconSize - height: root.iconSize - visible: root.cameraEnabled - anchors.left: parent.left - anchors.leftMargin: root.iconPadding - anchors.verticalCenter: parent.verticalCenter - source: root.cameraMuted ? "../images/face-mute.svg" : "../images/face.svg" - MouseArea { - anchors.fill: parent - onClicked: { - root.toggleCameraMute() - } - onDoubleClicked: { - root.resetSensors(); - } - } - } - - Image { - id: micMute - width: root.iconSize - height: root.iconSize - anchors.left: root.cameraEnabled ? faceMute.right : parent.left - anchors.leftMargin: root.iconPadding - anchors.verticalCenter: parent.verticalCenter - source: root.audioMuted ? "../images/mic-mute.svg" : "../images/mic.svg" - MouseArea { - anchors.fill: parent - onClicked: { - root.toggleAudioMute() - } - } - } - Item { id: audioMeter anchors.verticalCenter: parent.verticalCenter - anchors.left: micMute.right + anchors.left: parent.left anchors.leftMargin: root.iconPadding anchors.right: parent.right anchors.rightMargin: root.iconPadding