Merge pull request #8975 from zfox23/AddSnapshotText

Add "Snapshot" text to snapshot cards in Address Bar Dialog
This commit is contained in:
Howard Stearns 2016-11-01 15:33:53 -07:00 committed by GitHub
commit 486cf01a55

View file

@ -113,9 +113,8 @@ Rectangle {
}
FiraSansRegular {
id: users;
visible: action === 'concurrency';
text: onlineUsers;
size: textSize;
text: (action === 'concurrency') ? onlineUsers : 'snapshot';
size: (action === 'concurrency') ? textSize : textSizeSmall;
color: hifi.colors.white;
anchors {
verticalCenter: usersImage.verticalCenter;