SL-20341 Item Properties floater closes on changes for task inventory item
parent
226081b275
commit
f352fd1090
|
|
@ -257,6 +257,17 @@ void LLSidepanelItemInfo::refresh()
|
|||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (mObjectID.notNull())
|
||||
{
|
||||
LLViewerObject* object = gObjectList.findObject(mObjectID);
|
||||
if (object)
|
||||
{
|
||||
// Object exists, but object's content is not nessesary
|
||||
// loaded, so assume item exists as well
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (mParentFloater)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6034,7 +6034,7 @@ LLViewerObject::ExtraParameter* LLViewerObject::createNewParameterEntry(U16 para
|
|||
}
|
||||
default:
|
||||
{
|
||||
LL_INFOS() << "Unknown param type." << LL_ENDL;
|
||||
LL_INFOS_ONCE() << "Unknown param type: " << param_type << LL_ENDL;
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue