From 66ef619415d3195461d03938b445e8a6d439d7bc Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Fri, 19 Jul 2013 16:13:48 +0200 Subject: [PATCH] Bug fix: Update name of worn wearable when changing the name in the Properties floater of an inventory item. --- indra/newview/llinventorypanel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 21c51c25c..5b90e524f 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -479,6 +479,8 @@ void LLInventoryPanel::modelChanged(U32 mask) view_item->refresh(); } + // Singu note: let listeners know it was renamed. + view_item->rename(view_item->getLabel()); } }