From 1481c7424f8f06185161a4390575f47f55c81b7f Mon Sep 17 00:00:00 2001 From: Preston Bezos Date: Tue, 25 Jun 2019 11:02:44 -0700 Subject: [PATCH] changed ptt muted icon --- .../hifi/simplifiedUI/inputDeviceButton/InputDeviceButton.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/simplifiedUI/inputDeviceButton/InputDeviceButton.qml b/interface/resources/qml/hifi/simplifiedUI/inputDeviceButton/InputDeviceButton.qml index a7b2088fc9..c46367d064 100644 --- a/interface/resources/qml/hifi/simplifiedUI/inputDeviceButton/InputDeviceButton.qml +++ b/interface/resources/qml/hifi/simplifiedUI/inputDeviceButton/InputDeviceButton.qml @@ -115,7 +115,7 @@ Rectangle { Image { id: image visible: false - source: (pushToTalk) ? (pushingToTalk ? pushToTalkIcon : pushToTalkMutedIcon) : muted ? mutedIcon : + source: (pushToTalk) ? pushToTalkIcon : muted ? mutedIcon : clipping ? clippingIcon : gated ? gatedIcon : unmutedIcon anchors.fill: parent } @@ -170,7 +170,7 @@ Rectangle { Image { id: maskImage visible: false - source: (pushToTalk) ? (pushingToTalk ? pushToTalkIcon : pushToTalkMutedIcon) : muted ? mutedIcon : + source: (pushToTalk) ? pushToTalkIcon : muted ? mutedIcon : clipping ? clippingIcon : gated ? gatedIcon : unmutedIcon anchors.top: parent.top anchors.left: parent.left