From 1c1b36fde70fc201cc8023f4e7aad2d2b2d5ffc1 Mon Sep 17 00:00:00 2001 From: Arrehn Date: Fri, 24 Jun 2011 21:05:14 -0400 Subject: [PATCH] FIRE-1674, bugfix for not-cleared inventory cut/paste, by Satomi Ahn --- indra/newview/llfolderview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index b20b21464c..2f79d30d69 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -2097,7 +2097,7 @@ bool LLFolderView::doToSelected(LLInventoryModel* model, const LLSD& userdata) return true; } - if ("copy" == action) + if ("copy" == action || "cut" == action) { LLInventoryClipboard::instance().reset(); }