diff --git a/interface/resources/fonts/hifi-glyphs.ttf b/interface/resources/fonts/hifi-glyphs.ttf index f6efa8e039..0d72478814 100755 Binary files a/interface/resources/fonts/hifi-glyphs.ttf and b/interface/resources/fonts/hifi-glyphs.ttf differ diff --git a/interface/resources/qml/hifi/NameCard.qml b/interface/resources/qml/hifi/NameCard.qml index 5eb6e6b8b1..9a03c4b54a 100644 --- a/interface/resources/qml/hifi/NameCard.qml +++ b/interface/resources/qml/hifi/NameCard.qml @@ -56,7 +56,7 @@ Item { id: textContainer // Size width: parent.width - /*avatarImage.width - parent.spacing - */parent.anchors.leftMargin - parent.anchors.rightMargin - height: childrenRect.height + height: selected || isMyCard ? childrenRect.height : childrenRect.height - 20 anchors.verticalCenter: parent.verticalCenter // DisplayName field for my card @@ -274,6 +274,7 @@ Item { // Style radius: 4 color: "#c5c5c5" + visible: isMyCard || selected // Rectangle for the zero-gain point on the VU meter Rectangle { id: vuMeterZeroGain @@ -304,6 +305,7 @@ Item { id: vuMeterBase // Anchors anchors.fill: parent + visible: isMyCard || selected // Style color: parent.color radius: parent.radius @@ -311,6 +313,7 @@ Item { // Rectangle for the VU meter audio level Rectangle { id: vuMeterLevel + visible: isMyCard || selected // Size width: (thisNameCard.audioLevel) * parent.width // Style diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml index 99700bc0f2..78c6e856d6 100644 --- a/interface/resources/qml/hifi/Pal.qml +++ b/interface/resources/qml/hifi/Pal.qml @@ -200,7 +200,7 @@ Rectangle { TableViewColumn { role: "avgAudioLevel" - title: "VOL" + title: "LOUD" width: actionButtonWidth movable: false resizable: false @@ -244,7 +244,7 @@ Rectangle { // This Rectangle refers to each Row in the table. rowDelegate: Rectangle { // The only way I know to specify a row height. // Size - height: rowHeight + height: styleData.selected ? rowHeight : rowHeight - 20 color: styleData.selected ? hifi.colors.orangeHighlight : styleData.alternate ? hifi.colors.tableRowLightEven : hifi.colors.tableRowLightOdd