diff options
| -rw-r--r-- | indra/newview/llselectmgr.cpp | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index c86e43333c..d172a87b1d 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -5830,13 +5830,19 @@ void LLSelectMgr::processObjectProperties(LLMessageSystem* msg, void** user_data  		}  		else  		{ +            // save texture data as soon as we get texture perms first time +            bool save_textures = !node->mValid;  			if (node->mInventorySerial != inv_serial && node->getObject())  			{  				node->getObject()->dirtyInventory(); + +                // Even if this isn't object's first udpate, inventory changed +                // and some of the applied textures might have been in inventory +                // so update texture list. +                save_textures = true;  			} -			// save texture data as soon as we get texture perms first time -			if (!node->mValid) +			if (save_textures)  			{  				BOOL can_copy = FALSE;  				BOOL can_transfer = FALSE; | 
