Skip to content
Snippets Groups Projects
Commit 584f7512 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Inventory crashfix

parent f72fc217
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -619,7 +619,7 @@ void LLInventoryPanel::itemChanged(const LLUUID& item_id, U32 mask, const LLInve ...@@ -619,7 +619,7 @@ void LLInventoryPanel::itemChanged(const LLUUID& item_id, U32 mask, const LLInve
} }
// Select any newly created object that has the auto rename at top of folder root set. // Select any newly created object that has the auto rename at top of folder root set.
if(mFolderRoot.get()->getRoot()->needsAutoRename()) if(mFolderRoot.get() && mFolderRoot.get()->getRoot() && mFolderRoot.get()->getRoot()->needsAutoRename())
{ {
setSelection(item_id, FALSE); setSelection(item_id, FALSE);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment