diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2025-03-12 04:32:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-12 04:32:05 +0200 |
| commit | b50ad90febda24d2296541f46ea1a129232aad70 (patch) | |
| tree | d0c25fc032c156814b4b05c892dcfce1737508a1 /indra/newview/llfloatercreatelandmark.cpp | |
| parent | e70694e67cd1902fd2a797e24c48f08643291538 (diff) | |
| parent | 8297b923f0bec459ca2bfa916cf777ac5aa3af9e (diff) | |
Merge pull request #3708 from secondlife/marchcat/2025.03-maint-b
2025.03 Cherry pick from Maint B
Diffstat (limited to 'indra/newview/llfloatercreatelandmark.cpp')
| -rw-r--r-- | indra/newview/llfloatercreatelandmark.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llfloatercreatelandmark.cpp b/indra/newview/llfloatercreatelandmark.cpp index 2ce8a7a212..de84ce0e00 100644 --- a/indra/newview/llfloatercreatelandmark.cpp +++ b/indra/newview/llfloatercreatelandmark.cpp @@ -31,6 +31,7 @@ #include "llagent.h" #include "llagentui.h" #include "llcombobox.h" +#include "llfloaterreg.h" #include "llinventoryfunctions.h" #include "llinventoryobserver.h" #include "lllandmarkactions.h" @@ -389,6 +390,7 @@ void LLFloaterCreateLandmark::setItem(const uuid_set_t& items) { mItem = item; mAssetID = mItem->getAssetUUID(); + mParentID = mItem->getParentUUID(); setVisibleAndFrontmost(true); break; } @@ -418,8 +420,7 @@ void LLFloaterCreateLandmark::updateItem(const uuid_set_t& items, U32 mask) closeFloater(); } - LLUUID folder_id = mFolderCombo->getValue().asUUID(); - if (folder_id != mItem->getParentUUID()) + if (mParentID != mItem->getParentUUID()) { // user moved landmark in inventory, // assume that we are done all other changes should already be commited |
