From e5b09a087695c8bfafc46ab3357434e92480f76c Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Mon, 16 Feb 2015 14:57:28 -0500 Subject: [PATCH] Fix bug in which texture drag&drop to a texturectrl wouldn't make apply buttons enable (IE: group profile) --- indra/newview/lltexturectrl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/lltexturectrl.cpp b/indra/newview/lltexturectrl.cpp index fca81e83f..d0b2bfa13 100644 --- a/indra/newview/lltexturectrl.cpp +++ b/indra/newview/lltexturectrl.cpp @@ -1727,6 +1727,7 @@ BOOL LLTextureCtrl::doDrop(LLInventoryItem* item) // no callback installed, so just set the image ids and carry on. setImageAssetID( item->getAssetUUID() ); mImageItemID = item->getUUID(); + mDirty = true; return TRUE; }