mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 12:17:45 +02:00
Cleanup before PR
This commit is contained in:
parent
951db2e2da
commit
4a21eaa33f
2 changed files with 13 additions and 13 deletions
|
@ -368,7 +368,7 @@ void AvatarMixer::broadcastAvatarData() {
|
||||||
|
|
||||||
AvatarDataSequenceNumber lastSeqToReceiver = nodeData->getLastBroadcastSequenceNumber(otherNode->getUUID());
|
AvatarDataSequenceNumber lastSeqToReceiver = nodeData->getLastBroadcastSequenceNumber(otherNode->getUUID());
|
||||||
AvatarDataSequenceNumber lastSeqFromSender = otherNodeData->getLastReceivedSequenceNumber();
|
AvatarDataSequenceNumber lastSeqFromSender = otherNodeData->getLastReceivedSequenceNumber();
|
||||||
|
|
||||||
if (lastSeqToReceiver > lastSeqFromSender && lastSeqToReceiver != UINT16_MAX) {
|
if (lastSeqToReceiver > lastSeqFromSender && lastSeqToReceiver != UINT16_MAX) {
|
||||||
// we got out out of order packets from the sender, track it
|
// we got out out of order packets from the sender, track it
|
||||||
otherNodeData->incrementNumOutOfOrderSends();
|
otherNodeData->incrementNumOutOfOrderSends();
|
||||||
|
|
|
@ -244,18 +244,6 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Separator between user and admin functions
|
|
||||||
Rectangle {
|
|
||||||
// Size
|
|
||||||
width: 2
|
|
||||||
height: table.height
|
|
||||||
// Anchors
|
|
||||||
anchors.left: adminTab.left
|
|
||||||
anchors.top: table.top
|
|
||||||
// Properties
|
|
||||||
visible: iAmAdmin
|
|
||||||
color: hifi.colors.lightGrayText
|
|
||||||
}
|
|
||||||
// Refresh button
|
// Refresh button
|
||||||
Rectangle {
|
Rectangle {
|
||||||
// Size
|
// Size
|
||||||
|
@ -295,6 +283,18 @@ Item {
|
||||||
onExited: reloadButton.color = (pressed ? hifi.colors.lightGrayText: hifi.colors.darkGray)
|
onExited: reloadButton.color = (pressed ? hifi.colors.lightGrayText: hifi.colors.darkGray)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Separator between user and admin functions
|
||||||
|
Rectangle {
|
||||||
|
// Size
|
||||||
|
width: 2
|
||||||
|
height: table.height
|
||||||
|
// Anchors
|
||||||
|
anchors.left: adminTab.left
|
||||||
|
anchors.top: table.top
|
||||||
|
// Properties
|
||||||
|
visible: iAmAdmin
|
||||||
|
color: hifi.colors.lightGrayText
|
||||||
|
}
|
||||||
// This Rectangle refers to the [?] popup button
|
// This Rectangle refers to the [?] popup button
|
||||||
Rectangle {
|
Rectangle {
|
||||||
color: hifi.colors.tableBackgroundLight
|
color: hifi.colors.tableBackgroundLight
|
||||||
|
|
Loading…
Reference in a new issue