From 7da511fc32f56e29b4954b9cce27dc9f9d8f3474 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Mon, 11 Mar 2019 16:59:16 -0400 Subject: [PATCH] [VMM] Fix a crash on delete listing, probably due to perceived recursion --- indra/newview/llinventoryactions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/newview/llinventoryactions.cpp b/indra/newview/llinventoryactions.cpp index 6a485c408..16e0b9c6c 100644 --- a/indra/newview/llinventoryactions.cpp +++ b/indra/newview/llinventoryactions.cpp @@ -84,7 +84,7 @@ void LLInventoryAction::callback_doToSelected(const LLSD& notification, const LL S32 option = LLNotificationsUtil::getSelectedOption(notification, response); if (option == 0) // YES { - doToSelected(folder, action); + doToSelected(folder, action, false); } } @@ -93,11 +93,11 @@ void LLInventoryAction::callback_copySelected(const LLSD& notification, const LL S32 option = LLNotificationsUtil::getSelectedOption(notification, response); if (option == 0) // YES, Move no copy item(s) { - doToSelected(root, "copy_or_move_to_marketplace_listings"); + doToSelected(root, "copy_or_move_to_marketplace_listings", false); } else if (option == 1) // NO, Don't move no copy item(s) (leave them behind) { - doToSelected(root, "copy_to_marketplace_listings"); + doToSelected(root, "copy_to_marketplace_listings", false); } }