diff options
| author | Karl Stiefvater (qarl) <qarl@lindenlab.com> | 2009-12-02 11:56:21 -0600 | 
|---|---|---|
| committer | Karl Stiefvater (qarl) <qarl@lindenlab.com> | 2009-12-02 11:56:21 -0600 | 
| commit | 00962a68e24c4b628716aaa4390468dc5cc6194e (patch) | |
| tree | 7f1ce21d884fa9a77f0421ab21a4fe213517df05 | |
| parent | bb2631180a85df343e6d816fc37d881af31d49fb (diff) | |
CTS-37 Mesh-type assets can't be added to the inventory of a prim
| -rw-r--r-- | indra/newview/llpanelobjectinventory.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llpanelobjectinventory.cpp b/indra/newview/llpanelobjectinventory.cpp index 0c2e87aa3d..7a7372af6e 100644 --- a/indra/newview/llpanelobjectinventory.cpp +++ b/indra/newview/llpanelobjectinventory.cpp @@ -1593,6 +1593,11 @@ LLTaskInvFVBridge* LLTaskInvFVBridge::createObjectBridge(LLPanelObjectInventory*  										 object->getUUID(),  										 object->getName());  		break; +	case LLAssetType::AT_MESH: +		new_bridge = new LLTaskMeshBridge(panel, +										  object->getUUID(), +										  object->getName()); +		break;  		break;  	default:  | 
