SL-20341 Item Properties floater closes on changes for task inventory item

master
Andrey Kleshchev 2023-09-26 19:36:39 +03:00 committed by akleshchev
parent 226081b275
commit f352fd1090
2 changed files with 12 additions and 1 deletions

View File

@ -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)
{

View File

@ -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;
}
};