diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2025-02-13 16:10:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-13 16:10:49 +0200 |
commit | 0679cbdec89fbd3ec470768bdf469f6a1d326859 (patch) | |
tree | b8327acdba15b4437bea1defb0e9effdbffa1f9e /indra | |
parent | 646d0779bd81feefbcf64fc9e8f129b94ce91117 (diff) |
viewer-private#394 Ensure correct item id is used on mac
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinventorypanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 5066a7da7f..5a067ba454 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -579,7 +579,7 @@ void LLInventoryPanel::itemChanged(const LLUUID& item_id, U32 mask, const LLInve { if (model_item && view_item && viewmodel_item) { - const LLUUID& idp = viewmodel_item->getUUID(); + const LLUUID idp = viewmodel_item->getUUID(); view_item->destroyView(); removeItemID(idp); } |