From b98c6cb50f3e9e074b5750667768217f8611e347 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Tue, 1 Nov 2016 14:49:18 -0700 Subject: [PATCH] Change 'Snapshot' to 'snapshot' and use smaller font --- interface/resources/qml/hifi/Card.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/interface/resources/qml/hifi/Card.qml b/interface/resources/qml/hifi/Card.qml index 0ca7132c94..70eab82910 100644 --- a/interface/resources/qml/hifi/Card.qml +++ b/interface/resources/qml/hifi/Card.qml @@ -113,9 +113,8 @@ Rectangle { } FiraSansRegular { id: users; - visible: true; - text: ((action === 'concurrency') ? (onlineUsers) : ('Snapshot')); - size: textSize; + text: (action === 'concurrency') ? onlineUsers : 'snapshot'; + size: (action === 'concurrency') ? textSize : textSizeSmall; color: hifi.colors.white; anchors { verticalCenter: usersImage.verticalCenter;