Cleanup after rebase

This commit is contained in:
Zach Fox 2017-01-16 11:26:57 -08:00
parent 2f176f50fa
commit 32e330320e
4 changed files with 13 additions and 15 deletions

View file

@ -60,11 +60,15 @@ Item {
Rectangle {
id: myDisplayName
visible: isMyCard
color: "#C5C5C5"
anchors.left: parent.left
anchors.leftMargin: -10
// Size
width: parent.width + 70
height: 35
// Anchors
anchors.top: parent.top
anchors.left: parent.left
anchors.leftMargin: -10
// Style
color: "#C5C5C5"
border.color: hifi.colors.blueHighlight
border.width: 0
TextInput {
@ -126,7 +130,10 @@ Item {
}
// Spacer for DisplayName for my card
Rectangle {
id: myDisplayNameSpacer
width: myDisplayName.width
// Anchors
anchors.top: myDisplayName.bottom
height: 5
visible: isMyCard
opacity: 0
@ -160,7 +167,7 @@ Item {
// Size
width: parent.width
// Anchors
anchors.top: displayNameText.bottom
anchors.top: isMyCard ? myDisplayNameSpacer.bottom : displayNameText.bottom
// Text Size
size: thisNameCard.usernameTextHeight
// Text Positioning
@ -182,7 +189,7 @@ Item {
Rectangle {
id: nameCardVUMeter
// Size
width: ((gainSlider.value - gainSlider.minimumValue)/(gainSlider.maximumValue - gainSlider.minimumValue)) * parent.width
width: isMyCard ? gainSlider.width : ((gainSlider.value - gainSlider.minimumValue)/(gainSlider.maximumValue - gainSlider.minimumValue)) * parent.width
height: 8
// Anchors
anchors.top: spacer.bottom

View file

@ -346,11 +346,6 @@ Rectangle {
visible: iAmAdmin
color: hifi.colors.lightGrayText
}
function letterbox(message) {
letterboxMessage.text = message;
letterboxMessage.visible = true
}
// This Rectangle refers to the [?] popup button next to "NAMES"
Rectangle {
color: hifi.colors.tableBackgroundLight
@ -411,9 +406,6 @@ Rectangle {
onExited: adminHelpText.color = hifi.colors.redHighlight
}
}
LetterboxMessage {
id: letterboxMessage
}
}
function findSessionIndex(sessionId, optionalData) { // no findIndex in .qml

View file

@ -1094,7 +1094,7 @@ void AvatarData::setSkeletonModelURL(const QUrl& skeletonModelURL) {
void AvatarData::setDisplayName(const QString& displayName) {
_displayName = displayName;
DependencyManager::get<NodeList>()->killNodeWithUUID(getSessionUUID());
DependencyManager::get<NodeList>()->getDomainHandler().softReset();
qCDebug(avatars) << "Changing display name for avatar to" << displayName;
}

View file

@ -242,7 +242,6 @@ pal.fromQml.connect(function (message) { // messages are {method, params}, like
MyAvatar.displayName = message.params;
}
break;
default:
default:
print('Unrecognized message from Pal.qml:', JSON.stringify(message));
}