* Added lock persistence
* Temporarily disabling click+drag+move for non physical things until more experimenting is done to figure out how to get a sideways hand cursor in the client.0.6.0-stable
parent
ea8b6a28ed
commit
b280605237
|
@ -1299,12 +1299,12 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
NonPhysicalGrabMovement(pos);
|
//NonPhysicalGrabMovement(pos);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
NonPhysicalGrabMovement(pos);
|
//NonPhysicalGrabMovement(pos);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1474,7 +1474,8 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
public void UpdatePermissions(LLUUID AgentID, byte field, uint localID, uint mask, byte addRemTF)
|
public void UpdatePermissions(LLUUID AgentID, byte field, uint localID, uint mask, byte addRemTF)
|
||||||
{
|
{
|
||||||
SceneObjectPart updatePart = GetChildPart(localID);
|
SceneObjectPart updatePart = GetChildPart(localID);
|
||||||
updatePart.UpdatePermissions(AgentID, field, localID, mask, addRemTF);
|
updatePart.UpdatePermissions(AgentID, field, localID, mask, addRemTF);
|
||||||
|
HasGroupChanged = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Reference in New Issue