mirror of
https://github.com/lubosz/overte.git
synced 2025-08-17 18:23:27 +02:00
permissions for the local node were being updated without the various *changed* signals being called. this was keeping the asset-server menu item from being correct, among other things
This commit is contained in:
parent
e79767a121
commit
924c949af5
1 changed files with 3 additions and 1 deletions
|
@ -543,7 +543,9 @@ void NodeList::processDomainServerList(QSharedPointer<ReceivedMessage> message)
|
||||||
setSessionUUID(newUUID);
|
setSessionUUID(newUUID);
|
||||||
|
|
||||||
// pull the permissions/right/privileges for this node out of the stream
|
// pull the permissions/right/privileges for this node out of the stream
|
||||||
packetStream >> _permissions;
|
NodePermissions newPermissions;
|
||||||
|
packetStream >> newPermissions;
|
||||||
|
setPermissions(newPermissions);
|
||||||
|
|
||||||
// pull each node in the packet
|
// pull each node in the packet
|
||||||
while (packetStream.device()->pos() < message->getSize()) {
|
while (packetStream.device()->pos() < message->getSize()) {
|
||||||
|
|
Loading…
Reference in a new issue